Lines 57-73
Link Here
|
57 |
[% END %] |
57 |
[% END %] |
58 |
|
58 |
|
59 |
|
59 |
|
60 |
[% IF too_many_login_attempts %] |
60 |
[% IF invalid_username_or_password || too_many_login_attempts %] |
61 |
<div class="alert alert-info"> |
61 |
<!-- This is what is displayed if user doesnt have permission or account is locked. (Do not expose more information than needed.) --> |
62 |
This account has been locked! |
|
|
63 |
[% IF Koha.Preference('OpacResetPassword') %] |
64 |
<a href="/cgi-bin/koha/opac-password-recovery.pl">You must reset your password</a>. |
65 |
[% ELSE %] |
66 |
Please contact a library staff member. |
67 |
[% END %] |
68 |
</div> |
69 |
[% ELSIF invalid_username_or_password %] |
70 |
<!-- This is what is displayed if user doesnt have permission --> |
71 |
<div class="alert alert-info"> |
62 |
<div class="alert alert-info"> |
72 |
<p>You entered an incorrect username or password. Please try again! And remember, passwords are case sensitive.</p> |
63 |
<p>You entered an incorrect username or password. Please try again! And remember, passwords are case sensitive.</p> |
73 |
</div> |
64 |
</div> |
74 |
- |
|
|