|
Lines 78-84
Link Here
|
| 78 |
[% IF (!Koha.Preference('OpacResetPassword')) %] |
78 |
[% IF (!Koha.Preference('OpacResetPassword')) %] |
| 79 |
<div class="alert alert-info">You can't reset your password.</div> |
79 |
<div class="alert alert-info">You can't reset your password.</div> |
| 80 |
[% ELSIF (password_recovery) %] |
80 |
[% ELSIF (password_recovery) %] |
| 81 |
<form action="/cgi-bin/koha/opac-password-recovery.pl" method="post"> |
81 |
<form action="/cgi-bin/koha/opac-password-recovery.pl" method="post" autocomplete="off"> |
| 82 |
<input type="hidden" name="koha_login_context" value="opac" /> |
82 |
<input type="hidden" name="koha_login_context" value="opac" /> |
| 83 |
<fieldset> |
83 |
<fieldset> |
| 84 |
<p>To reset your password, enter your login and your email address. |
84 |
<p>To reset your password, enter your login and your email address. |
|
Lines 92-98
Link Here
|
| 92 |
</fieldset> |
92 |
</fieldset> |
| 93 |
</form> |
93 |
</form> |
| 94 |
[% ELSIF (new_password) %] |
94 |
[% ELSIF (new_password) %] |
| 95 |
<form action="/cgi-bin/koha/opac-password-recovery.pl" method="post"> |
95 |
<form action="/cgi-bin/koha/opac-password-recovery.pl" method="post" autocomplete="off"> |
| 96 |
<input type="hidden" name="koha_login_context" value="opac" /> |
96 |
<input type="hidden" name="koha_login_context" value="opac" /> |
| 97 |
<fieldset> |
97 |
<fieldset> |
| 98 |
<div class="alert alert-info">The password must contain at least [% minPassLength %] characters.</div> |
98 |
<div class="alert alert-info">The password must contain at least [% minPassLength %] characters.</div> |
| 99 |
- |
|
|