guillaumepotier / Parsley.js

Validate your forms, frontend, without writing a single line of javascript
http://parsleyjs.org
MIT License
9.05k stars 1.32k forks source link

Parsley gets bypassed by deleting require #1365

Closed wadid closed 2 years ago

wadid commented 2 years ago

I have an issue with people deleting the require tags in forms. Is there a way using parsley so it doesnt get bypassed by manipulation of the html in the frontend?

marcandre commented 2 years ago

No.

All client-side validation should also be done server side. Always. You can never trust data received from a browser.

Good luck.