+
+ {{ t('passwordRequirements') }}
+
+
+
+ {{
+ t('charactersLong', {
+ length: passwordRequirements.length
+ })
+ }}
+
+
+ {{
+ t('alphabeticCharacters', {
+ nAlpha: passwordRequirements.nAlpha
+ })
+ }}
+
+
+ {{
+ t('capitalLetters', {
+ nUpper: passwordRequirements.nUpper
+ })
+ }}
+
+
+ {{ t('digits', { nDigits: passwordRequirements.nDigits }) }}
+
+
+ {{ t('symbols', { nPunct: passwordRequirements.nPunct }) }}
+
+
+
+