form-elements.md 20 KB


title: Form elements summary: Forms are one of the most important types of interaction with a website or app. Since their aim is to enable users to make a purchase, subscribe to a service or sign up to create an account, it's important to make sure they are easy to complete and help increase conversion rates. Use the available elements to create forms which are well-structured and user-friendly. bootstrapLink: components/forms/ docs-libs: nouislider description: Design user-friendly and effective forms.

order: 1

Classic inputs

Use classic, user-friendly inputs, label them appropriately and include input placeholders that will help users avoid confusion when completing a form. Add the form-control class to style your input controls.

<input type="text" class="form-control" name="example-text-input" placeholder="Input placeholder" />

All variants of the input control are available in the examples below:

{% capture html -%}

Text <input
type="text"
class="form-control"
name="example-text-input"
placeholder="Input placeholder"

/>

Password <input
type="password"
class="form-control"
name="example-password-input"
placeholder="Input placeholder"

/>

Disabled <input
type="text"
class="form-control"
name="example-password-input"
placeholder="Input placeholder"
disabled

/>

Readonly <input
type="text"
class="form-control"
name="example-password-input"
value="Readolny value"
readonly

/>

{%- endcapture %} {% include "docs/example.html" html=html %}

Form control rounded

Use the form-control-rounded class if you prefer form controls with rounded corners.

{% capture html -%}

Form control rounded <input
type="text"
class="form-control form-control-rounded mb-2"
name="Form control rounded"
placeholder="Text.."

/>

<input type="text" value="" class="form-control form-control-rounded" placeholder="Search…" />
<span class="input-icon-addon">
  <svg
    xmlns="http://www.w3.org/2000/svg"
    class="icon"
    width="24"
    height="24"
    viewBox="0 0 24 24"
    stroke-width="2"
    stroke="currentColor"
    fill="none"
    stroke-linecap="round"
    stroke-linejoin="round"
  >
    <path stroke="none" d="M0 0h24v24H0z" fill="none" />
    <circle cx="10" cy="10" r="7" />
    <line x1="21" y1="21" x2="15" y2="15" />
  </svg>
</span>

{%- endcapture %} {% include "docs/example.html" html=html %}

Form control flush

You can remove borders from your form control by adding the form-control-flush class.

{% capture html -%} Form control flush <input

type="text"
class="form-control form-control-flush"
name="Form control flush"
placeholder="Text.."

/> {%- endcapture %} {% include "docs/example.html" html=html %}

Input with icon

Add icons to your input controls to suggest users what they should enter or inform them of the current state of a form element.

{% capture html -%}

Icon input
<input type="text" value="" class="form-control" placeholder="Search…" />
<span class="input-icon-addon">
  <svg
    xmlns="http://www.w3.org/2000/svg"
    class="icon"
    width="24"
    height="24"
    viewBox="0 0 24 24"
    stroke-width="2"
    stroke="currentColor"
    fill="none"
    stroke-linecap="round"
    stroke-linejoin="round"
  >
    <path stroke="none" d="M0 0h24v24H0z" fill="none" />
    <circle cx="10" cy="10" r="7" />
    <line x1="21" y1="21" x2="15" y2="15" />
  </svg>
</span>

<span class="input-icon-addon">
  <svg
    xmlns="http://www.w3.org/2000/svg"
    class="icon"
    width="24"
    height="24"
    viewBox="0 0 24 24"
    stroke-width="2"
    stroke="currentColor"
    fill="none"
    stroke-linecap="round"
    stroke-linejoin="round"
  >
    <path stroke="none" d="M0 0h24v24H0z" fill="none" />
    <circle cx="12" cy="7" r="4" />
    <path d="M6 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2" />
  </svg>
</span>
<input type="text" value="" class="form-control" placeholder="Username" />

Loader input
<input type="text" value="" class="form-control" placeholder="Loading…" />
<span class="input-icon-addon">
  <div class="spinner-border spinner-border-sm text-secondary" role="status"></div>
</span>

<span class="input-icon-addon">
  <div class="spinner-border spinner-border-sm text-secondary" role="status"></div>
</span>
<input type="text" value="" class="form-control" placeholder="Loading…" />

{%- endcapture %} {% include "docs/example.html" html=html %}

Separated inputs

Include an additional element in your input section, such as a button which can be used to submit the information entered in the input control.

{% capture html -%}

Separated inputs
<div class="col">
  <input type="text" class="form-control" placeholder="Search for…" />
</div>
<div class="col-auto">
  <a href="#" class="btn btn-icon" aria-label="Button">
    <svg
      xmlns="http://www.w3.org/2000/svg"
      class="icon"
      width="24"
      height="24"
      viewBox="0 0 24 24"
      stroke-width="2"
      stroke="currentColor"
      fill="none"
      stroke-linecap="round"
      stroke-linejoin="round"
    >
      <path stroke="none" d="M0 0h24v24H0z" fill="none" />
      <circle cx="10" cy="10" r="7" />
      <line x1="21" y1="21" x2="15" y2="15" />
    </svg>
  </a>
</div>

{%- endcapture %} {% include "docs/example.html" html=html %}

Textarea and select

Use a multi-line text input control to enable users to enter longer pieces of text. The control will automatically adjust to the length of the text entered.

Add one of the available selects - either a dropdown or a multiple choice select - to let users choose from a predefined set of options.

{% capture html -%}

Textarea <textarea
class="form-control"
name="example-textarea"
placeholder="Textarea placeholder"

Select
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>

Select multiple
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>

{%- endcapture %} {% include "docs/example.html" html=html %}

Input size

Choose the size of an input control that will go well with your form design. Besides the default size, you can also use small and large input controls.

{% capture html -%}

Input sizing
{%- endcapture %} {% include "docs/example.html" html=html %}

Datalists

Use the datalist element to add an autocomplete feature to your input control. The list of available options will display once a user starts to type and will make it quicker to complete form sections.

{% capture html -%}

Datalist example
<option value="Aruba" />
<option value="Afghanistan" />
<option value="Angola" />
<option value="Anguilla" />
<option value="Albania" />
<option value="Andorra" />
<option value="United Arab Emirates" />
<option value="Argentina" />
<option value="Armenia" />
<option value="American Samoa" />

{%- endcapture %} {% include "docs/example.html" html=html %}

Toggle switches

Use toggle switches for the elements of your form which require choosing between two opposing states.

{% capture html -%}

Toggle switches
<input class="form-check-input" type="checkbox" checked />
<span class="form-check-label">Option 1</span>

<input class="form-check-input" type="checkbox" />
<span class="form-check-label">Option 2</span>

<input class="form-check-input" type="checkbox" />
<span class="form-check-label">Option 3</span>

Single switch
<input class="form-check-input" type="checkbox" />
<span class="form-check-label">I agree with terms and conditions</span>

{%- endcapture %} {% include "docs/example.html" html=html %}

Radios

Use radio buttons for the parts of your form which require users to choose one option from a set of two or more mutually exclusive options.

{% capture html -%}

Radios
<label class="form-check">
  <input class="form-check-input" type="radio" name="radios" checked />
  <span class="form-check-label">Option 1</span>
</label>
<label class="form-check">
  <input class="form-check-input" type="radio" name="radios" />
  <span class="form-check-label">Option 2</span>
</label>
<label class="form-check">
  <input class="form-check-input" type="radio" disabled />
  <span class="form-check-label">Option 3</span>
</label>
<label class="form-check">
  <input class="form-check-input" type="radio" checked disabled />
  <span class="form-check-label">Option 4</span>
</label>

{%- endcapture %} {% include "docs/example.html" html=html %}

{% capture html -%}

Inline Radios
<label class="form-check form-check-inline">
  <input class="form-check-input" type="radio" name="radios-inline" checked />
  <span class="form-check-label">Option 1</span>
</label>
<label class="form-check form-check-inline">
  <input class="form-check-input" type="radio" name="radios-inline" />
  <span class="form-check-label">Option 2</span>
</label>
<label class="form-check form-check-inline">
  <input class="form-check-input" type="radio" name="radios-inline" disabled />
  <span class="form-check-label">Option 3</span>
</label>

{%- endcapture %} {% include "docs/example.html" html=html %}

Checkboxes

Use checkboxes if you want to allow users to select more than one option from a set of predefined options or to turn an option on or off.

{% capture html -%}

Checkboxes
<label class="form-check">
  <input class="form-check-input" type="checkbox" />
  <span class="form-check-label">Checkbox input</span>
</label>
<label class="form-check">
  <input class="form-check-input" type="checkbox" disabled />
  <span class="form-check-label">Disabled checkbox input</span>
</label>
<label class="form-check">
  <input class="form-check-input" type="checkbox" checked />
  <span class="form-check-label">Checked checkbox input</span>
</label>

Inline Checkboxes
<label class="form-check form-check-inline">
  <input class="form-check-input" type="checkbox" />
  <span class="form-check-label">Option 1</span>
</label>
<label class="form-check form-check-inline">
  <input class="form-check-input" type="checkbox" disabled />
  <span class="form-check-label">Option 2</span>
</label>
<label class="form-check form-check-inline">
  <input class="form-check-input" type="checkbox" checked />
  <span class="form-check-label">Option 3</span>
</label>

{%- endcapture %} {% include "docs/example.html" html=html %}

Range input

Add a range slider to make it possible for users to set a value or range, such as a price range or a time frame.

{% capture html -%}

Range input
{%- endcapture %} {% include "docs/example.html" html=html %}

Input group

Create a group of input controls and place add-ons on either side of an input.

{% capture html -%}

Input group
<span class="input-group-text"> @ </span>
<input type="text" class="form-control" placeholder="username" autocomplete="off" />

<input type="text" class="form-control" placeholder="subdomain" autocomplete="off" />
<span class="input-group-text"> .tabler.io </span>

<span class="input-group-text"> https:// </span>
<input type="text" class="form-control" placeholder="subdomain" autocomplete="off" />
<span class="input-group-text"> .tabler.io </span>

{%- endcapture %} {% include "docs/example.html" html=html %}

Input with checkboxes or radios

Add checkboxes or radio buttons on either side of your input control.

{% capture html -%}

Input with checkbox or radios
<span class="input-group-text">
  <input class="form-check-input m-0" type="checkbox" checked />
</span>
<input type="text" class="form-control" autocomplete="off" />

<input type="text" class="form-control" autocomplete="off" />
<span class="input-group-text">
  <input class="form-check-input m-0" type="radio" checked />
</span>

{%- endcapture %} {% include "docs/example.html" html=html %}

Input with prepended or appended text

Add text to your input control, either before or after the text which is to be entered by a user.

{% capture html -%}

Input with prepended text
<span class="input-group-text"> https://tabler.io/users/ </span>
<input type="text" class="form-control ps-0" value="yourfancyusername" autocomplete="off" />

<input
  type="text"
  class="form-control text-end pe-0"
  value="yourfancydomain"
  autocomplete="off"
/>
<span class="input-group-text"> .tabler.io </span>

{%- endcapture %} {% include "docs/example.html" html=html %}

Input with appended link

Include a link in your input control to add a clickable element within the control.

{% capture html -%}

Input with appended link
<input type="password" class="form-control" value="ultrastrongpassword" autocomplete="off" />
<span class="input-group-text">
  <a href="#" class="input-group-link">Show password</a>
</span>

{%- endcapture %} {% include "docs/example.html" html=html %}

Input with appended kbd

Include a <kbd> in your input control to add a shortcut hint to the control.

{% capture html -%}

Input with appended kbd
<input type="password" class="form-control" value="ultrastrongpassword" autocomplete="off" />
<span class="input-group-text">
  <kbd>ctrl + K</kbd>
</span>

{%- endcapture %} {% include "docs/example.html" html=html %}

Input with appended icon links

Add an icon link which you want to display at the end of your input control to visually represent actions which a user can take.

{% capture html -%}

Input with appended icon links
<input type="text" class="form-control" autocomplete="off" />
<span class="input-group-text">
  <a href="#" class="link-secondary" title="Clear search" data-bs-toggle="tooltip">
    <svg
      xmlns="http://www.w3.org/2000/svg"
      class="icon"
      width="24"
      height="24"
      viewBox="0 0 24 24"
      stroke-width="2"
      stroke="currentColor"
      fill="none"
      stroke-linecap="round"
      stroke-linejoin="round"
    >
      <path stroke="none" d="M0 0h24v24H0z" fill="none" />
      <line x1="18" y1="6" x2="6" y2="18" />
      <line x1="6" y1="6" x2="18" y2="18" />
    </svg>
  </a>
  <a href="#" class="link-secondary ms-2" title="Search settings" data-bs-toggle="tooltip">
    <svg
      xmlns="http://www.w3.org/2000/svg"
      class="icon"
      width="24"
      height="24"
      viewBox="0 0 24 24"
      stroke-width="2"
      stroke="currentColor"
      fill="none"
      stroke-linecap="round"
      stroke-linejoin="round"
    >
      <path stroke="none" d="M0 0h24v24H0z" fill="none" />
      <circle cx="6" cy="10" r="2" />
      <line x1="6" y1="4" x2="6" y2="8" />
      <line x1="6" y1="12" x2="6" y2="20" />
      <circle cx="12" cy="16" r="2" />
      <line x1="12" y1="4" x2="12" y2="14" />
      <line x1="12" y1="18" x2="12" y2="20" />
      <circle cx="18" cy="7" r="2" />
      <line x1="18" y1="4" x2="18" y2="5" />
      <line x1="18" y1="9" x2="18" y2="20" />
    </svg>
  </a>
  <a
    href="#"
    class="link-secondary ms-2 disabled"
    title="Add notification"
    data-bs-toggle="tooltip"
  >
    <svg
      xmlns="http://www.w3.org/2000/svg"
      class="icon"
      width="24"
      height="24"
      viewBox="0 0 24 24"
      stroke-width="2"
      stroke="currentColor"
      fill="none"
      stroke-linecap="round"
      stroke-linejoin="round"
    >
      <path stroke="none" d="M0 0h24v24H0z" fill="none" />
      <path
        d="M10 5a2 2 0 0 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"
      />
      <path d="M9 17v1a3 3 0 0 0 6 0v-1" />
    </svg>
  </a>
</span>

{%- endcapture %} {% include "docs/example.html" html=html %}