DEV Community

Discussion on: Tips For Validating HTML Form Inputs

Collapse
 
davidadigwu profile image
David Adigwu

Best way is validating from back end

Collapse
 
mnrode profile image
mnrode

You definitely have to validate in the backend for data consistency and security, because frontend validation can be disabled, but having validation in the frontend can significantly improve the user experience.

Collapse
 
nedyudombat profile image
Nedy Udombat

Thank you @mnrode for clarifying that

Collapse
 
nedyudombat profile image
Nedy Udombat

You actually have to validate both ways. That way you catch most of it on the frontend and leave the rare /edge cases to be handled by the backend.