Input

Websites need one must have component, which is often overlooked in terms of design. Input fields and forms are present everwhere and are very crucial.

Normal Active Input

To add input form components to your site, add the class input-label to labels, add input-field for the fields, input-textarea for textarea input, and input-required for fields that are necessary.

You can paste the below code to create relevant input fields.

Disabled and Read Only Input

To add disabled input form components to your site, add the attribute disabled. For read only fields add readonly.

You can paste the below code to create relevant disabled input fields.

Input Form with Validation

To add an input form with validation to your site, add the relevant HTML code. This code contains both error and success validation messages, which can be manipulated by using JavaScript.

Please fill email!
Please recheck your password, it should be between 6 to 20 characters.
Please enter birthdate.

You can paste the below code to create validation input form.