You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Great job implementing client-side validation checks and providing descriptive feedback for your users!
It’s worth bearing in mind that, while client side validation can enhance the user experience, it isn’t considered secure.
For future reference, it’s a good idea to repeat regex pattern matching checks on the server side too. Currently, if somebody wanted to bypass your form input regex requirements, they could do so quite easily by altering the HTML pattern attribute in their browser’s console.
The text was updated successfully, but these errors were encountered:
Great job implementing client-side validation checks and providing descriptive feedback for your users!
It’s worth bearing in mind that, while client side validation can enhance the user experience, it isn’t considered secure.
For future reference, it’s a good idea to repeat regex pattern matching checks on the server side too. Currently, if somebody wanted to bypass your form input regex requirements, they could do so quite easily by altering the HTML
pattern
attribute in their browser’s console.The text was updated successfully, but these errors were encountered: