linkcollect/Main-Website-Linkcollect

Bug: Password validation message on signup is misleading and signup text color

Opened this issue · 0 comments

  • I tried signing up today, but if I added. '^' or '.' in my password, the signup button still remained disabled. The message says, 1 special character is required. Adding '!' worked and enabled the button.

1 - Either we can update the regex -
const passwordPattern = /^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[!@#$%^&*])[A-Za-z\d@$!%*?&#]{8,}$/;

2 - We can update the message as some special characters are not working.

Also, the text color on signup page is really light and difficult to read. We should make it darker.

https://www.loom.com/share/0aee1895452443bba06bd67bb28a9dcc?sid=048b104c-7637-4d54-9996-1ed0e04e4311

Please assign me to this issue if you think these are genuine issues.