mirror of
https://github.com/zitadel/zitadel.git
synced 2025-11-14 05:33:16 +00:00
feat: show max password length in complexity components (#7810)
# Which Problems Are Solved There is confusing ambiguity in the error messages for setting too long passwords in different places. # How the Problems Are Solved A check for maximum password length is added so it's clear that passwords can't exceed a maximum length of 70 or 72 bytes. Password validation now provides a live updating check mark or cross mark to indicate if the maximum length requirement is met. # Additional Changes Clarified requirement descriptions on the registration page with complete sentences. # Additional Context Closes #6301 --------- Co-authored-by: Elio Bischof <elio@zitadel.com>
This commit is contained in:
@@ -595,6 +595,7 @@
|
||||
"INVALID_FORMAT": "El formato no es valido.",
|
||||
"NOTANEMAIL": "El valor proporcionado no es una dirección de email.",
|
||||
"MINLENGTH": "Debe tener al menos {{requiredLength}} caracteres de longitud.",
|
||||
"MAXLENGTH": "Debe tener menos de {{requiredLength}} caracteres.",
|
||||
"UPPERCASEMISSING": "Debe incluir un carácter en mayúscula.",
|
||||
"LOWERCASEMISSING": "Debe incluir un carácter en minúscula.",
|
||||
"SYMBOLERROR": "Debe incluir un símbolo o un signo de puntuación.",
|
||||
@@ -880,7 +881,8 @@
|
||||
"SET": "Establecer nueva contraseña",
|
||||
"RESENDNOTIFICATION": "Enviar enlace para restablecer la contraseña",
|
||||
"REQUIRED": "Faltan algunos campos requeridos.",
|
||||
"MINLENGTHERROR": "Debe tener al menos {{value}} caracteres de longitud."
|
||||
"MINLENGTHERROR": "Debe tener al menos {{value}} caracteres de longitud.",
|
||||
"MAXLENGTHERROR": "Debe tener menos de {{value}} caracteres"
|
||||
},
|
||||
"ID": "ID",
|
||||
"EMAIL": "Email",
|
||||
|
||||
Reference in New Issue
Block a user