View | Details | Raw Unified | Return to bug 21311
Collapse All | Expand All

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt (-13 / +3 lines)
Lines 57-75 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
                                <!-- This is what is displayed if user doesnt have permission or account is locked. (Do not expose more information than needed.) -->
61
                                <div class="alert alert-info">
62
                                <div class="alert alert-info">
62
                                This account has been locked!
63
                                    <p>You entered an incorrect username or password. Please try again! And remember, passwords are case sensitive. Please contact a library staff member if you continue to have problems.</p>
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">
72
                                    <p>You entered an incorrect username or password. Please try again! And remember, passwords are case sensitive.</p>
73
                                </div>
64
                                </div>
74
                            [% END %]
65
                            [% END %]
75
66
76
- 

Return to bug 21311