Memory Usage

32.3%
8,6,5,9,8,4,9,3,5,9

CPU Usage

140.05
4,3,5,7,12,10,4,5,11,7

Disk Usage

82.02%
1,2,1,3,2,10,4,12,7

Daily Traffic

62,201
3,12,7,9,2,3,4,5,2

No attachments yet.

No events scheduled today.

Form Elements

Forms are used to collect user information with different element types of input, select, checkboxes, radios and more.

A basic form control with disabled and readonly mode.

<input class="form-control" placeholder="Input box" type="text">
<input class="form-control" placeholder="Input box" type="text" readonly>
<input class="form-control" placeholder="Input box" type="text" disabled>

A form control with success, warning and error state.

<input class="form-control is-valid" placeholder="Input box" type="text">
<input class="form-control is-warning" placeholder="Input box" type="text">
<input class="form-control is-invalid" placeholder="Input box" type="text">

A custom styled checkboxes and radios.

<label class="ckbox">
  <input type="checkbox">
  <span>Checkbox Unchecked</span>
</label>
<label class="rdiobox">
  <input name="rdio" type="radio">
  <span>Radio Unchecked</span>
</label>

A custom styled checkboxes and radios with colored active state.

<label class="ckbox ckbox-success">...</label>
<label class="rdiobox rdiobox-success">...</label>
Class Values
class="ckbox ckbox-[value]" success | warning | danger | info | teal | indigo | purple | pink | orange | dark
class="rdiobox rdiobox-[value]"

Select2 gives you a customizable select box with support for searching, tagging, remote data sets, infinite scrolling, and many other highly used options.

<select class="form-control select2" data-placeholder="Choose Browser">
  <option value="Firefox">Firefox</option>
  <option value="Chrome">Chrome</option>
  <option value="Safari">Safari</option>
  <option value="Opera">Opera</option>
  <option value="Internet Explorer">Internet Explorer</option>
</select>

A custom styled file browser.

<div class="custom-file">
  <input type="file" id="file" class="custom-file-input">
  <label class="custom-file-label"></label>
</div>

A lightweight jQuery plugin that creates easily-styleable toggle buttons.

<div class="br-toggle br-toggle-rounded br-toggle-primary on">
  <div class="br-toggle-switch"></div>
</div>
Class Values
class="br-toggle br-toggle-[value]" primary | success | warning | danger | info | teal | indigo | purple | pink | orange
class="br-toggle br-toggle-rounded" Convert the toggle button to rounded shape

Easily extend form controls by adding text, buttons, or button groups on either side of textual inputs.

@ex.com
$
.00
<div class="input-group">
  <div class="input-group-prepend">
    <span class="input-group-text"><i class="icon ion-person tx-16 lh-0 op-6"></i></span>
  </div>
  <input type="text" class="form-control" placeholder="Username">
</div><!-- input-group -->

Input masks allows a user to more easily enter fixed width input where you would like them to enter the data in a certain format (dates,phones, etc).

$('#dateMask').mask('99/99/9999');
$('#phoneMask').mask('(999) 999-9999');
$('#ssnMask').mask('999-99-9999');

User interface for managing tags.

<input type="text" value="Amsterdam,Washington,Sydney,Beijing,Cairo" data-role="tagsinput">

The datepicker is tied to a standard form input field. Click on the input to open an interactive calendar in a small overlay. If a date is chosen, feedback is shown as the input's value.

Default Functionality

<input type="text" class="form-control fc-datepicker" placeholder="MM/DD/YYYY">

Set the numberOfMonths option to an integer of 2 or more to show multiple months in a single datepicker.

$('#datepickerNoOfMonths').datepicker({
  showOtherMonths: true,
  selectOtherMonths: true,
  numberOfMonths: 2
});

Display the datepicker embedded in the page instead of in an overlay.

<div class="fc-datepicker"></div>

Easily select a time for a text input using your mouse or keyboards arrow keys.

<input id="tpBasic" type="text" class="form-control" placeholder="Set time">
$('#tpBasic').timepicker();

A simple component to select color in the same way you select color in Adobe Photoshop.

$('#colorpicker').spectrum({
  color: '#17A2B8'
});

You can allow alpha transparency selection. Check out these example.

$('#showAlpha').spectrum({
  color: 'rgba(23,162,184,0.5)',
  showAlpha: true
});

Show pallete only. If you'd like, spectrum can show the palettes you specify, and nothing else.

$('#showPaletteOnly').spectrum({
  showPaletteOnly: true,
  showPalette:true,
  color: '#DC3545',
  palette: [
    ['#1D2939', '#FFF', '#0866C6','#23BF08', '#F49917'],
    ['#DC3545', '#17A2B8', '#6610F2', '#fa1e81', '#72e7a6']
  ]
});

Simple, small and fast javascript/jquery slider element.

<input type="text" id="rangeslider1" name="example_name" value="" />
$('#rangeslider1').ionRangeSlider();