|
|
|
|
|
by rhaway84773
1195 days ago
|
|
You don’t have to do all validation on the server side. Did the user forget to fill a mandatory field? Is this phone number actually even possible? Does this zip/postal code exist? Is the age entered too low to create an account? Is the password long enough? Does it meet all the requirements. Can we dynamically show which requirements it doesn’t meet. Even email, which you will want to verify by actually sending an email, can have some basic front end checks (is there an @ in the email entered by the user). In fact, I bet the vast majority of validations can in fact be done in the front end in real time. |
|
For simple projects, the validation built in to HTML form elements may be sufficient.