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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry-update-submitted.tt (-1 / +1 lines)
Lines 32-38 Link Here
32
            </div>
32
            </div>
33
            <div class="col-10 order-first order-lg-2">
33
            <div class="col-10 order-first order-lg-2">
34
                <div id="update-submitted" class="maincontent">
34
                <div id="update-submitted" class="maincontent">
35
                    <div class="alert alert-success">
35
                    <div class="alert alert-success" role="status">
36
                        <p><strong>Thank you</strong></p>
36
                        <p><strong>Thank you</strong></p>
37
                        [% IF ( Koha.Preference('AutoApprovePatronProfileSettings') ) %]
37
                        [% IF ( Koha.Preference('AutoApprovePatronProfileSettings') ) %]
38
                            <p>Your updates have been submitted and your patron account has been modified.</p>
38
                            <p>Your updates have been submitted and your patron account has been modified.</p>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt (-6 / +5 lines)
Lines 77-86 Link Here
77
                <div id="[% container_id | html %]" class="maincontent">
77
                <div id="[% container_id | html %]" class="maincontent">
78
                    [% IF op == 'edit' %]
78
                    [% IF op == 'edit' %]
79
                        [% UNLESS OPACPatronDetails %]
79
                        [% UNLESS OPACPatronDetails %]
80
                            <div class="alert alert-info">To make changes to your record please contact the library.</div>
80
                            <div class="alert alert-info" role="status">To make changes to your record please contact the library.</div>
81
                        [% END %]
81
                        [% END %]
82
                        [% IF nochanges %]
82
                        [% IF nochanges %]
83
                            <div class="alert alert-error">No changes were made.</div>
83
                            <div class="alert alert-error" role="alert">No changes were made.</div>
84
                        [% END %]
84
                        [% END %]
85
                    [% END %]
85
                    [% END %]
86
86
Lines 89-95 Link Here
89
                    [% END %]
89
                    [% END %]
90
90
91
                    [% IF invalid_form_fields %]
91
                    [% IF invalid_form_fields %]
92
                        <div class="alert alert-error"
92
                        <div class="alert alert-error" role="alert"
93
                            ><strong>The following fields contain invalid information:</strong>
93
                            ><strong>The following fields contain invalid information:</strong>
94
                            <ul>
94
                            <ul>
95
                                [% FOREACH field IN invalid_form_fields %]
95
                                [% FOREACH field IN invalid_form_fields %]
Lines 149-155 Link Here
149
                    [% END %]
149
                    [% END %]
150
150
151
                    [% IF failed_captcha %]
151
                    [% IF failed_captcha %]
152
                        <div class="alert alert-warning">You typed in the wrong characters in the box before submitting. Please try again.</div>
152
                        <div class="alert alert-warning" role="alert">You typed in the wrong characters in the box before submitting. Please try again.</div>
153
                    [% END %]
153
                    [% END %]
154
154
155
                    [% IF has_guarantor_flag && !Koha.Preference('OPACPrivacy') && ( Koha.Preference('AllowPatronToSetCheckoutsVisibilityForGuarantor') || Koha.Preference('AllowPatronToSetFinesVisibilityForGuarantor') ) %]
155
                    [% IF has_guarantor_flag && !Koha.Preference('OPACPrivacy') && ( Koha.Preference('AllowPatronToSetCheckoutsVisibilityForGuarantor') || Koha.Preference('AllowPatronToSetFinesVisibilityForGuarantor') ) %]
Lines 1175-1181 Link Here
1175
                                    <h2 class="sr-only">Password</h2>
1175
                                    <h2 class="sr-only">Password</h2>
1176
                                    <fieldset class="rows" id="memberentry_password">
1176
                                    <fieldset class="rows" id="memberentry_password">
1177
                                        <legend id="contact_legend">Password</legend>
1177
                                        <legend id="contact_legend">Password</legend>
1178
                                        <div class="alert alert-info">
1178
                                        <div class="alert alert-info" role="status">
1179
                                            [% IF patron %]
1179
                                            [% IF patron %]
1180
                                                [% IF ( patron.category.effective_require_strong_password ) %]
1180
                                                [% IF ( patron.category.effective_require_strong_password ) %]
1181
                                                    <p>Your password must contain at least [% patron.category.effective_min_password_length | html %] characters, including UPPERCASE, lowercase and numbers.</p>
1181
                                                    <p>Your password must contain at least [% patron.category.effective_min_password_length | html %] characters, including UPPERCASE, lowercase and numbers.</p>
1182
- 

Return to bug 40283