VIVO-704: add maximum password length to hint
This commit is contained in:
parent
dd6a631eb4
commit
9e651b8eed
3 changed files with 3 additions and 3 deletions
|
@ -90,7 +90,7 @@ be emailed to the address entered above. The password will not \
|
|||
be reset until the user follows the link provided in this email.
|
||||
new_password = New password
|
||||
confirm_password = Confirm new password
|
||||
minimum_password_length = Minimum of {0} characters in length.
|
||||
minimum_password_length = Minimum of {0} characters in length; maximum of {1}.
|
||||
leave_password_unchanged = Leaving this blank means that the password will not be changed.
|
||||
confirm_initial_password = Confirm initial password
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
<label for="new-password">${strings.new_password}<span class="requiredHint"> *</span></label>
|
||||
<input type="password" name="newPassword" value="${newPassword}" id="new-password" role="input" />
|
||||
|
||||
<p class="note">${strings.minimum_password_length(minimumLength)}</p>
|
||||
<p class="note">${strings.minimum_password_length(minimumLength, maximumLength)}</p>
|
||||
|
||||
<label for="confirm-password">${strings.confirm_password}<span class="requiredHint"> *</span></label>
|
||||
<input type="password" name="confirmPassword" value="${confirmPassword}" id="confirm-password" role="input" />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue