fix(ui): Enhance password requirements: update minimum length to 12 characters and add checks for uppercase letters, digits, and special characters

This commit is contained in:
Alex Neo
2026-04-28 15:39:33 +03:00
parent 4171efcd79
commit 9ab9b8576c
3 changed files with 36 additions and 18 deletions
+4 -1
View File
@@ -899,7 +899,10 @@
},
"requirements": {
"title": "Password requirements:",
"length": "At least 12 characters"
"length": "At least 12 characters",
"uppercase": "At least one uppercase letter",
"digit": "At least one digit",
"special": "At least one special character (!@#$%^&*(),.?\":{}|<>)"
},
"match": "Passwords match",
"notMatch": "Passwords don't match"