ui icon indicating copy to clipboard operation
ui copied to clipboard

Password doesn't accept symbols

Open Pacifisity opened this issue 10 months ago • 0 comments

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,}$

Pacifisity avatar Apr 18 '24 14:04 Pacifisity