codeuino / social-platform-donut-frontend

This is an Open Source social Platform where people can interact with Open Source expertise around the globe and work on different projects
207 stars 220 forks source link

added stronger password pattern #593

Open codetheorem opened 4 years ago

codetheorem commented 4 years ago

I have added a stronger password pattern in the sign up form according to this "^(?=.[a-z])(?=.[A-Z])(?=.\d)(?=.[@$!%?&])[A-Za-z\d@$!%?&]{8,}$" which is equivalent to Minimum eight characters, at least one uppercase letter, one lowercase letter, one number, and one special character. I have also updated the validation message accordingly.

image

Fixes #591