Forms

Available since 1.0.0

Form groups are used to assemble form elements with labels, messages, and help containers.

These components can be used alone. For example, the form__item element with the label and control could be used without the full form group since not every form field will need error messages.


Inputs

Inputs are used to collect data from the user and should always be paired with a label. When a field is required, the label should include an asterisk (*).

A text input field allows users to enter and edit text or numeric values in one line. To help users enter a valid value, it provides additional features like “auto-complete”, “suggestions”, and “value help”.

Use the input field if:

  • The user needs to enter a short, single-line text or numbers, dates or times.
  • The user needs to select one or more items from a list of items, such a a multi-input.
  • The user needs to find one or more items out of a list of items by searching for more than one attribute, such as a combobox.

Do not use the input field if:

  • The user needs to enter long texts. In this case, use the textarea.
  • The user needs to carry out a search. In this case, use the search field.
<div class="fd-form__set">
    <div class="fd-form__item">
        <label class="fd-form__label" for="input-1">Default Input:</label>
        <input class="fd-form__control" type="text" id="input-1" placeholder="Field placeholder text">
    </div>
</div>

<div class="fd-form__set">
    <div class="fd-form__item">
        <label class="fd-form__label" for="input-1">Compact Input:</label>
        <input class="fd-input--compact fd-form__control" type="text" id="input-1" placeholder="Field placeholder text">
    </div>
</div>

<div class="fd-form__set">
    <div class="fd-form__item">
        <label class="fd-form__label" aria-required="true" for="input-2">Required Input:*</label>
        <input class="fd-form__control" type="text" id="input-2" placeholder="Field placeholder text">
    </div>
</div>

<div class="fd-form__set">
    <div class="fd-form__item">
        <label class="fd-form__label" aria-required="true" for="input-3">Password:*</label>
        <input class="fd-form__control" type="password" id="input-3">
    </div>
</div>


Inputs help elements

Help elements give the user information about the input. Two types of help elements can be used.

  • The inline help element is displayed as a ? Icon. On hover or click, help content is displayed.
  • Help content can also be visible at all times to avoid mistakes. This type of help generally contains validation rules about the data allowed in the input field. An example is “Maximum 20 characters”. This is displayed below the input field.
Pellentesque metus lacus commodo eget justo ut rutrum varius nunc
<div class="fd-form__set">
    <div class="fd-form__item">
        <label class="fd-form__label" for="input-44">
            Input with inline help:
            <span class="fd-inline-help fd-has-float-right">
                <span class="fd-inline-help__content fd-inline-help__content--bottom-left">
                        Lorem ipsum dolor sit amet, consectetur adipiscing.
                </span>
            </span>
        </label>
        <input class="fd-form__control" type="text" id="input-45">
    </div>
</div>

<div class="fd-form__set">
    <div class="fd-form__item">
        <label class="fd-form__label" for="input-45">Input with Help Message:</label>
        <input class="fd-form__control" type="text" id="input-45">
        <span class="fd-form__message fd-form__message--help">
            Pellentesque metus lacus commodo eget justo ut rutrum varius nunc
        </span>
    </div>
</div>


Input States

The state of the input field can reflect validity of the data entered, whether the input data is editable or disabled.

  • Normal: The field is editable but no validation has occurred
  • Valid: The data format entered has been validated and it’s correct, such as an email address.
  • Invalid: The data entered is not valid and must be corrected.
  • Warning: The data entered is formatted correctly but there are other issues are problematic but will not stop the user from moving forward.
  • Disabled: This indicates the field is not editable. A common use case is that this field is dependent on a previous entry or selection within the form.
  • Read Only: Used to display static information in the context of a form.

Along with Invalid and Warning, error messages should be displayed below the field so the user can correct the error and move forward.

Pellentesque metus lacus commodo eget justo ut rutrum varius nunc
Pellentesque metus lacus commodo eget justo ut rutrum varius nunc
Pellentesque metus lacus commodo eget justo ut rutrum varius nunc
Pellentesque metus lacus commodo eget justo ut rutrum varius nunc
<div class="fd-form__item">
    <label class="fd-form__label" for="OatmD552">
        Normal Input:
    </label>
    <input type="text" class="fd-form__control" id="OatmD552" placeholder="Field placeholder text">
    <span class="fd-form__message">
        Pellentesque metus lacus commodo eget justo ut rutrum varius nunc
    </span>
</div>

<div class="fd-form__item">
    <label class="fd-form__label" for="input-2">
        Valid Input:
    </label>
    <input class="fd-form__control is-valid" type="text" id="input-2">
</div>

<div class="fd-form__item">
    <label class="fd-form__label" for="UI7xy545">
        Invalid Input:
    </label>
    <input type="text" class="fd-form__control is-invalid" id="UI7xy545" placeholder="Field placeholder text">
    <span class="fd-form__message fd-form__message--error">
        Pellentesque metus lacus commodo eget justo ut rutrum varius nunc
    </span>
</div>

<div class="fd-form__item">
    <label class="fd-form__label" for="pvsz1273">
        Warning Input:
    </label>
    <input type="text" class="fd-form__control is-warning" id="pvsz1273" placeholder="Field placeholder text">
    <span class="fd-form__message fd-form__message--warning">
        Pellentesque metus lacus commodo eget justo ut rutrum varius nunc
    </span>
</div>


<div class="fd-form__item">
    <label class="fd-form__label" for="VmsRZ860">
        Field Label:
    </label>
    <input type="text" class="fd-form__control" id="VmsRZ860" placeholder="Field placeholder text">
    <span class="fd-form__message fd-form__message--help">
        Pellentesque metus lacus commodo eget justo ut rutrum varius nunc
    </span>
</div>

<div class="fd-form__item">
    <label class="fd-form__label" for="input-6">Disabled Input:</label>
    <input class="fd-form__control" type="text" id="input-6" value="Non editable data" disabled>
</div>

<div class="fd-form__item">
    <label class="fd-form__label" for="input-7">Read Only Input:</label>
    <input class="fd-form__control" type="text" id="input-7" value="Read only data" readonly>
</div>


Textarea

Use the text area if you want users to enter multiple lines of unformatted text.

Do not use the text area if

  • You only want them to enter a single line of text, use the input control instead.
  • Users need to enter formatted text. Use the rich text editor instead.
<div class="fd-form__set">
    <div class="fd-form__item">
        <label class="fd-form__label" for="textarea-1">Text area:</label>
        <textarea class="fd-form__control" id="textarea-1">Pellentesque metus lacus commodo eget justo ut rutrum varius nunc.</textarea>
    </div>
</div>
<div class="fd-form__set">
    <div class="fd-form__item">
        <label class="fd-form__label" for="textarea-2">Compact text area:</label>
        <textarea class="fd-form__control fd-textarea--compact" id="textarea-2">Pellentesque metus lacus commodo eget justo ut rutrum varius nunc.</textarea>
    </div>
</div>


Select

The Select component is similar to a dropdown but is more commonly used within a form. It can also be set to a disabled state.

<div class="fd-form__set">
    <div class="fd-form__item">
        <label class="fd-form__label" for="select-1">Default Select:</label>
        <select class="fd-form__control" id="select-1" name="">
            <option value="1">Duis malesuada odio volutpat elementum</option>
            <option value="2">Suspendisse ante ligula</option>
            <option value="3">Sed bibendum sapien at posuere interdum</option>
        </select>
    </div>
</div>

<div class="fd-form__set">
    <div class="fd-form__item">
        <label class="fd-form__label" for="select-2">Disabled Select:</label>
        <select class="fd-form__control" id="select-2" name="" disabled>
            <option value="1">Duis malesuada odio volutpat elementum</option>
            <option value="2">Suspendisse ante ligula</option>
            <option value="3">Sed bibendum sapien at posuere interdum</option>
        </select>
    </div>
</div>


Radio buttons

Radio buttons provide users with a set of mutually exclusive options. They allow a user to select only one option from two or more choices. Each option is represented by a radio button. Consequently, radio buttons only work in groups.

Use the radio button if:

  • You need to help users choose quickly between at least two clearly different choices.

Do not use the radio button if:

  • You need to offer the user the option of multiple selection. In this case, use checkboxes instead because radio buttons are for single-selection contexts only.
  • You need to present more than 8 options. Use a dropdown box or list view. In special cases, there are only two mutually exclusive options. Combine them into a single checkbox or toggle switch. For example, use a checkbox for “I agree” (for example, to terms and conditions) instead of two radio buttons for “I agree” and “I don’t agree”.
  • The options are numbers with fixed steps. Use a slider control.
Radio buttons
Radio buttons Disabled
Inline Radio buttons
<fieldset class="fd-form__set">
    <legend class="fd-form__legend">Radio buttons</legend>
    <div class="fd-form__item fd-form__item--check">
        <label class="fd-form__label" for="pDidh761">
            <input type="radio" class="fd-form__control" id="pDidh761" name="radio" checked="checked">
            Field label
        </label>
    </div>
    <div class="fd-form__item fd-form__item--check">
        <label class="fd-form__label" for="pDidh7612">
            <input type="radio" class="fd-form__control" id="pDidh7612" name="radio">
            Field label
        </label>
    </div>
    <div class="fd-form__item fd-form__item--check">
        <label class="fd-form__label" for="pDidh7613">
            <input type="radio" class="fd-form__control" id="pDidh7613" name="radio">
            Field label
        </label>
    </div>
</fieldset>

<fieldset class="fd-form__set">
    <legend class="fd-form__legend">Radio buttons Disabled</legend>
    <div class="fd-form__item fd-form__item--check">
        <label class="fd-form__label" for="pDidh764">
            <input type="radio" class="fd-form__control" id="pDidh764" name="radio" disabled>
            Field label
        </label>
    </div>
    <div class="fd-form__item fd-form__item--check">
        <label class="fd-form__label" for="pDidh7615">
            <input type="radio" class="fd-form__control" id="pDidh7615" name="radio" disabled>
            Field label
        </label>
    </div>
    <div class="fd-form__item fd-form__item--check">
        <label class="fd-form__label" for="pDidh7616">
            <input type="radio" class="fd-form__control" id="pDidh7616" name="radio" disabled>
            Field label
        </label>
    </div>
</fieldset>

<fieldset class="fd-form__set">
    <legend class="fd-form__legend">Inline Radio buttons</legend>
    <div class="fd-form__group">
        <div class="fd-form__item fd-form__item--inline fd-form__item--check">
            <label class="fd-form__label" for="pDidh767">
                <input type="radio" class="fd-form__control" id="pDidh767" name="radio">
                Field label
            </label>
        </div>
        <div class="fd-form__item fd-form__item--inline fd-form__item--check">
            <label class="fd-form__label" for="pDidh7618">
                <input type="radio" class="fd-form__control" id="pDidh7618" name="radio" >
                Field label
            </label>
        </div>
        <div class="fd-form__item fd-form__item--inline fd-form__item--check">
            <label class="fd-form__label" for="pDidh7619">
                <input type="radio" class="fd-form__control" id="pDidh7619" name="radio">
                Field label
            </label>
        </div>
    </div>
</fieldset>


Checkbox

With checkboxes, all options are visible and the user can make one or more selections. This component can be set disabled and also displayed in a row.

Use the check box if:

  • Only one option can be selected or deselected, for example to accept terms of use. Use it only if the meaning is obvious.
  • A group or a list of options can be selected independently of each other.
  • All available options need to be displayed right away without any user interaction.
  • An intermediate selection state (Tri-State) is required when multiple sub-options are grouped under a parent option. The Tri-State will represent that multiple (but not all) sub-options are selected in the list.

Do not use the checkbox control if:

  • The user needs to choose multiple options from a large list. Use a multi-combo box instead.
  • The user can choose only one option from a list. Use a radio buttons, a select, or a list instead.
  • The user needs to perform instantaneous actions that do not need reviewing or confirming. Consider using the switch control instead.
  • There is not enough space available on the screen. Use the combo box control instead.
Checkboxes
Checkboxes disabled
Checkboxes inline
<fieldset class="fd-form__set">
    <legend class="fd-form__legend">Checkboxes</legend>
    <div class="fd-form__item fd-form__item--check">
        <label class="fd-form__label" for="Ai4ez611">
            <input type="checkbox" class="fd-form__control" id="Ai4ez611">
            Text Option
        </label>
    </div>
    <div class="fd-form__item fd-form__item--check">
        <label class="fd-form__label" for="Ai4ez612">
            <input type="checkbox" class="fd-form__control" id="Ai4ez612" checked>
            Selected State
        </label>
    </div>
    <div class="fd-form__item fd-form__item--check">
        <label class="fd-form__label" for="Ai4ez613">
            <input type="checkbox" class="fd-form__control" id="Ai4ez613" >
            TriState Text
        </label>
    </div>
</fieldset>

<fieldset class="fd-form__set">
    <legend class="fd-form__legend">Checkboxes disabled</legend>
    <div class="fd-form__item fd-form__item--check">
        <label class="fd-form__label" for="Ai4ez614">
            <input type="checkbox" class="fd-form__control" id="Ai4ez614" disabled>
            Field label
        </label>
    </div>
    <div class="fd-form__item fd-form__item--check">
        <label class="fd-form__label" for="Ai4ez615">
            <input type="checkbox" class="fd-form__control" id="Ai4ez615" disabled>
            Field label
        </label>
    </div>
    <div class="fd-form__item fd-form__item--check">
        <label class="fd-form__label" for="Ai4ez616">
            <input type="checkbox" class="fd-form__control" id="Ai4ez616" disabled>
            Field label
        </label>
    </div>
</fieldset>

<fieldset class="fd-form__set">
    <legend class="fd-form__legend">Checkboxes inline</legend>
    <div class="fd-form__group">
        <div class="fd-form__item fd-form__item--inline fd-form__item--check">
            <label class="fd-form__label" for="Ai4ez617">
                <input type="checkbox" class="fd-form__control" id="Ai4ez617">
                Field label
            </label>
        </div>
        <div class="fd-form__item fd-form__item--inline fd-form__item--check">
            <label class="fd-form__label" for="Ai4ez618">
                <input type="checkbox" class="fd-form__control" id="Ai4ez618">
                Field label
            </label>
        </div>
        <div class="fd-form__item fd-form__item--inline fd-form__item--check">
            <label class="fd-form__label" for="Ai4ez619">
                <input type="checkbox" class="fd-form__control" id="Ai4ez619">
                Field label
            </label>
        </div>

    </div>
</fieldset>