Form elements

Input

Input fields allow user input. The border should light up simply and clearly indicating which field the user is currently editing. You must have put a .form-control class on each input.

Demo:

Code:

Code

Textarea

Textareas allow larger expandable user input. The border should light up simply and clearly indicating which field the user is currently editing. You must have a .form-control class on the textarea element.

Demo:

Code:

 
Code

Select

Select allows user input through specified options. Make sure you add the class .form-control to the select element.

Demo:

Code:

Code

Radio

Add radio buttons to a group by adding the name attribute along with the same corresponding value for each of the radio buttons in the group. Create disabled radio buttons by adding the disabled attribute as shown below.

Demo:

Code:

Code