I have a contact form which requests general information from the user prior to submission. Here's the list of fields I'm collecting:
01-FirstName (required) 02-LastName (required) 03-Phone (not required, acceptable chars 1234567890-() x ) 04-Email (required, email validation selected) 05-Address 06-City 07-State 08-Zip 09-BestTimeToContact 10-Comments
All of the fields are TEXT input except "Comments/Questions" which is a TEXTAREA. When I submit the form without entering anything, it correctly tells the user that they need to fill the three required fields. However, if a user fills out the form and only fills in the 04-Email field, the form submits.
Also, regarding the email validation, how is this being validated? I am able to submit the form with only entering a single character (ie: 'v')
Any ideas why it doesn't correctly validate the form?
Thanks in advance. |
|
|