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').inputmask('99/99/9999');
$('#phoneMask').inputmask('(999) 999-9999');
$('#ssnMask').inputmask('999-99-9999');

User interface for managing tags, powered by Select2's built-in tagging mode.

<select class="form-control select2-tag" multiple>
  <option value="Amsterdam" selected>Amsterdam</option>
  ...
</select>
$('.select2-tag').select2({ tags: true });

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>

Native HTML5 time input -- the browser supplies the picker UI (clock or scroll wheel, depending on platform), with no JS dependency.

<input id="tpBasic" type="time" class="form-control">
$('#setTimeButton').on('click', function () {
  var now = new Date();
  $('#tp3').val(now.toTimeString().slice(0, 5));
});

Native HTML5 color input -- the browser's own color picker, with no JS dependency. It does not support alpha transparency or custom swatch palettes; use a <datalist> of presets if a limited palette is needed.

<input type="color" id="colorpicker" value="#17A2B8">

A palette of presets can be offered alongside the native picker using a <datalist>.

<input type="color" value="#DC3545" list="colorPresets">
<datalist id="colorPresets">
  <option value="#1D2939"></option>
  ...
</datalist>

Native HTML5 range input, with no JS dependency. Dual-handle (min/max) ranges are built from a synced pair of native sliders, since the browser only exposes a single-handle range control.

<input type="range" class="custom-range" id="rangeslider1" min="0" max="100" value="50">
$('#rangeslider1').on('input', function () {
  $('#rangeslider1Out').text(this.value);
});