Lines 103-109
Link Here
|
103 |
<form action="/cgi-bin/koha/opac-password-recovery.pl" method="post" autocomplete="off"> |
103 |
<form action="/cgi-bin/koha/opac-password-recovery.pl" method="post" autocomplete="off"> |
104 |
<input type="hidden" name="koha_login_context" value="opac" /> |
104 |
<input type="hidden" name="koha_login_context" value="opac" /> |
105 |
<fieldset> |
105 |
<fieldset> |
106 |
<div class="alert alert-info">The password must contain at least [% minPasswordLength | html %] characters.</div> |
106 |
[% IF ( Koha.Preference('RequireStrongPassword') ) %] |
|
|
107 |
<div class="alert alert-info">Your password must contain at least [% Koha.Preference('minPasswordLength') | html %] characters, including UPPERCASE, lowercase and numbers.</div> |
108 |
[% ELSE %] |
109 |
<div class="alert alert-info">Your password must be at least [% Koha.Preference('minPasswordLength') | html %] characters long.</div> |
110 |
[% END %] |
107 |
<label for="password">New password:</label> |
111 |
<label for="password">New password:</label> |
108 |
<input type="password" id="password" size="40" name="password" /> |
112 |
<input type="password" id="password" size="40" name="password" /> |
109 |
<label for="repeatPassword">Confirm new password:</label> |
113 |
<label for="repeatPassword">Confirm new password:</label> |
Lines 122-128
Link Here
|
122 |
<br/>Please click the link in this email to finish the process of resetting your password. |
126 |
<br/>Please click the link in this email to finish the process of resetting your password. |
123 |
<br/>This link is valid for 2 days starting now. |
127 |
<br/>This link is valid for 2 days starting now. |
124 |
</p> |
128 |
</p> |
125 |
<a href="/cgi-bin/koha/opac-main.pl"">Return to the main page</a> |
129 |
<a href="/cgi-bin/koha/opac-main.pl">Return to the main page</a> |
126 |
</div> |
130 |
</div> |
127 |
[% ELSIF (password_reset_done) %] |
131 |
[% ELSIF (password_reset_done) %] |
128 |
<div class="alert alert-success"> |
132 |
<div class="alert alert-success"> |
129 |
- |
|
|