ui
ui copied to clipboard
Password doesn't accept symbols
The input box in login-05 requires 6 characters, a letter and a number. However, this prevents users from using symbols in their password.
Previous RegEx: ^(?=.[A-Za-z])(?=.\d)[A-Za-z\d]{6,}$
New RegEx: ^(?=.[A-Za-z])(?=.\d)[A-Za-z\d\W]{6,}$