Inputs

Inputs are essential for user interaction with the website. Inputs are used to take information from the user, and then save the data to the server, accordingly.

Label Inputs

Label Input has a label present at the top of the input field. They can be customized to display error-message and change color accordingly.

Wrong Password. Try again!!

Text Box

Radio

Radio buttons allow the user to select one option from a set.

Checkbox

Checkboxes allow the user to choose one or more items from a group. Checkboxes can be used to turn an option on or off.
If you have multiple options appearing in a list, you can maintain space by using checkboxes instead of on/off controls. If you have a single option, avoid using a checkbox and use an on/off switch instead.

Input validation

Validation is done while user enters the input.Use the class 'input-validation' on the inputs to use this functionality
You can copy html part from below code snippet.

Looks Good!
Please enter you name
Looks Good!
Enter correct email
Looks Good!
You must agree before submitting

JavaScript