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

(-)a/installer/data/mysql/atomicupdate/password_expire.pl (-1 / +1 lines)
Lines 1-7 Link Here
1
use Modern::Perl;
1
use Modern::Perl;
2
2
3
return {
3
return {
4
    bug_number => "BUG_NUMBER",
4
    bug_number => "29924",
5
    description => "Add password expiration",
5
    description => "Add password expiration",
6
    up => sub {
6
    up => sub {
7
        my ($args) = @_;
7
        my ($args) = @_;
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt (-2 / +3 lines)
Lines 168-174 Link Here
168
                        [% END # /UNLESS OPACShibOnly %]
168
                        [% END # /UNLESS OPACShibOnly %]
169
169
170
                        [% IF password_has_expired %]
170
                        [% IF password_has_expired %]
171
                            <p class="error"><strong>Error: </strong>Your password has expired!</p>
171
                            <div class="alert alert-info">
172
                                <p><strong>Error: </strong>Your password has expired!</p>
173
                            </div>
172
                            [% IF Koha.Preference('OpacPasswordChange') && Categories.can_any_reset_password %]
174
                            [% IF Koha.Preference('OpacPasswordChange') && Categories.can_any_reset_password %]
173
                                <div id="resetpassword">
175
                                <div id="resetpassword">
174
                                    <a href="/cgi-bin/koha/opac-password-recovery.pl">Reset your password?</a>
176
                                    <a href="/cgi-bin/koha/opac-password-recovery.pl">Reset your password?</a>
175
- 

Return to bug 29924