Skip to content

Commit 413dc19

Browse files
committed
all registration / password change views now show the min password length
1 parent b8e3454 commit 413dc19

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

2-advanced/views/password_reset_new_password.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<input type='hidden' name='user_name' value='<?php echo $login->getUsername(); ?>' />
2727
<input type='hidden' name='user_password_reset_hash' value='<?php echo $login->getPasswordResetHash(); ?>' />
2828

29-
<label for="reset_input_password_new">New password</label>
29+
<label for="reset_input_password_new">New password (min. 6 characters)</label>
3030
<input id="reset_input_password_new" class="reset_input" type="password" name="user_password_new" pattern=".{6,}" required autocomplete="off" />
3131

3232
<label for="reset_input_password_repeat">Repeat new password</label>

4-full-mvc-framework/views/login/changepassword.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<input type='hidden' name='user_name' value='<?php echo $this->user_name; ?>' />
2121
<input type='hidden' name='user_password_reset_hash' value='<?php echo $this->user_password_reset_hash; ?>' />
2222

23-
<label for="reset_input_password_new">New password</label>
23+
<label for="reset_input_password_new">New password (min. 6 characters)</label>
2424
<input id="reset_input_password_new" class="reset_input" type="password" name="user_password_new" pattern=".{6,}" required autocomplete="off" />
2525

2626
<label for="reset_input_password_repeat">Repeat new password</label>

0 commit comments

Comments
 (0)