JAVASCRIPT FORM VALIDATION



Implement the validations from below to see effect


Name :

< input type="text"> gives a box for text input.
It is useful for entering names,surnames,keywords etc.


Phone number :

< input type="tel"> lets you to enter a telephone number.
Different patterns can be set for the input format.


Email:

< input type="email"> lets you to enter email.
It checks for the '@' character and verifies the mail entered.


Date of Birth:

< input type="date" name="dob"> this enables to enter date of birth.
This field is very useful and interactive as one can click and choose the date.


Registration form for practice

Name:


Address:


E-mail Address:


Password:


Mobile Number:


Date of birth:


SELECT YOUR COURSE



Write your own code for the registration from