#7994 Updating password error message to mention numbers. (#8103)

This commit is contained in:
Mihir Kulkarni 2022-11-03 00:31:14 -07:00 committed by GitHub
parent 63ceeb2a33
commit 0bc2d92aba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,4 +12,5 @@
*/
export const passwordErrorMessage =
'Password must be a minimum of 8 and a maximum of 16 characters long and contain at least one uppercase and one lowercase letter (A, z), and one special character (such as !, %, @, or #)';
'Password must be a minimum of 8 and a maximum of 16 characters long and contain at least one uppercase character ' +
'(A-Z), one lowercase character (a-z), one number, and one special character (such as !, %, @, or #)';