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

(-)a/installer/data/mysql/atomicupdate/bug_33766-a11y_fix_ambiguous_form-field_in_opac-auth.tt (-1 / +1 lines)
Lines 9-15 return { Link Here
9
9
10
        # Do you stuffs here
10
        # Do you stuffs here
11
        $dbh->do(
11
        $dbh->do(
12
            q{INSERT IGNORE INTO systempreferences (variable,value) VALUES ('OPACLoginLabelTextContent','Cardnumber')  }
12
            q{INSERT IGNORE INTO systempreferences (variable,value) VALUES ('OPACLoginLabelTextContent','cardnumber')  }
13
        );
13
        );
14
14
15
        # sysprefs
15
        # sysprefs
(-)a/installer/data/mysql/mandatory/sysprefs.sql (-1 / +1 lines)
Lines 481-487 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
481
('OPACLocalCoverImages','0','1','Display local cover images on OPAC search and details pages.','YesNo'),
481
('OPACLocalCoverImages','0','1','Display local cover images on OPAC search and details pages.','YesNo'),
482
('OpacLocationBranchToDisplay','holding','holding|home|both','In the OPAC, under location show which branch for Location in the record details.','Choice'),
482
('OpacLocationBranchToDisplay','holding','holding|home|both','In the OPAC, under location show which branch for Location in the record details.','Choice'),
483
('OpacLocationOnDetail','holding','holding|home|both|column','In the OPAC detail, display the shelving location on its own column or under a library columns.',  'Choice'),
483
('OpacLocationOnDetail','holding','holding|home|both|column','In the OPAC detail, display the shelving location on its own column or under a library columns.',  'Choice'),
484
('OPACLoginLabelTextContent','Cardnumber',NULL,NULL,NULL),
484
('OPACLoginLabelTextContent','cardnumber',NULL,NULL,NULL),
485
('OPACMandatoryHoldDates', '', '|start|end|both', 'Define which hold dates are required on OPAC reserve form', 'Choice'),
485
('OPACMandatoryHoldDates', '', '|start|end|both', 'Define which hold dates are required on OPAC reserve form', 'Choice'),
486
('OpacMaintenance','0','','If ON, enables maintenance warning in OPAC','YesNo'),
486
('OpacMaintenance','0','','If ON, enables maintenance warning in OPAC','YesNo'),
487
('OpacMaintenanceNotice','','','A user-defined block of HTML to appear on screen when OpacMaintenace is enabled','Textarea'),
487
('OpacMaintenanceNotice','','','A user-defined block of HTML to appear on screen when OpacMaintenace is enabled','Textarea'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref (-4 / +3 lines)
Lines 176-184 OPAC: Link Here
176
            - pref: OPACLoginLabelTextContent
176
            - pref: OPACLoginLabelTextContent
177
              default: Cardnumber
177
              default: Cardnumber
178
              choices:
178
              choices:
179
                  Cardnumber: Cardnumber
179
                  cardnumber: Cardnumber
180
                  Username: Username
180
                  username: Username
181
                  "Cardnumber or Username": Cardnumber or Username
181
                  cardnumberorusername: Cardnumber or Username
182
            - "as the text content of the userid input field's label."
182
            - "as the text content of the userid input field's label."
183
        -
183
        -
184
            - pref: OPACShowMusicalInscripts
184
            - pref: OPACShowMusicalInscripts
Lines 538-544 OPAC: Link Here
538
              type: textarea
538
              type: textarea
539
              syntax: text/html
539
              syntax: text/html
540
              class: code
540
              class: code
541
542
        -
541
        -
543
            - pref: OpacBrowseSearch
542
            - pref: OpacBrowseSearch
544
              default: 0
543
              default: 0
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/html_helpers.inc (+11 lines)
Lines 162-164 Link Here
162
        </li>
162
        </li>
163
    [% END %]
163
    [% END %]
164
[% END %]
164
[% END %]
165
166
[% BLOCK login_label %]
167
    [%- SET preference_value = Koha.Preference('OPACLoginLabelTextContent') %]
168
    [%- SET label = "Cardnumber" %]
169
    [%- IF preference_value == "username" %]
170
        [%- SET label = "Username" %]
171
    [%- ELSIF preference_value == "cardnumberorusername" %]
172
        [%- SET label = "Cardnumber or Username" %]
173
    [%- END %]
174
    <label for="[% for | html %]">[% label | html %]:</label>
175
[% END %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc (-1 / +1 lines)
Lines 426-432 Link Here
426
                            <input type="hidden" name="koha_login_context" value="opac" />
426
                            <input type="hidden" name="koha_login_context" value="opac" />
427
                            <fieldset class="brief">
427
                            <fieldset class="brief">
428
                                <div class="local-login">
428
                                <div class="local-login">
429
                                    <label for="muserid">[% Koha.Preference('OPACLoginLabelTextContent') | html %]:</label><input type="text" id="muserid" name="userid" autocomplete="off" />
429
                                    [% PROCESS login_label for="muserid" %]<input type="text" id="muserid" name="userid" autocomplete="off" />
430
                                    <label for="mpassword">Password:</label><input type="password" id="mpassword" name="password" autocomplete="off" />
430
                                    <label for="mpassword">Password:</label><input type="password" id="mpassword" name="password" autocomplete="off" />
431
                                    <fieldset class="action">
431
                                    <fieldset class="action">
432
                                        <input type="submit" class="btn btn-primary" value="Log in" />
432
                                        <input type="submit" class="btn btn-primary" value="Log in" />
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt (-1 / +1 lines)
Lines 218-224 Link Here
218
                                            <input type="hidden" name="[% INPUT.name | html %]" value="[% INPUT.value | html %]" />
218
                                            <input type="hidden" name="[% INPUT.name | html %]" value="[% INPUT.value | html %]" />
219
                                        [% END %]
219
                                        [% END %]
220
                                        <div class="form-group">
220
                                        <div class="form-group">
221
                                            <label for="userid">[% Koha.Preference('OPACLoginLabelTextContent') | html %]:</label>
221
                                            [% PROCESS login_label for="userid" %]
222
                                            <input class="form-control" type="text"  size="25" id="userid"  name="userid" autocomplete="off" />
222
                                            <input class="form-control" type="text"  size="25" id="userid"  name="userid" autocomplete="off" />
223
                                        </div>
223
                                        </div>
224
                                        <div class="form-group">
224
                                        <div class="form-group">
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-main.tt (-1 / +1 lines)
Lines 205-211 Link Here
205
                                            <p>If you do not have an external account, but do have a local account, you can still log in: </p>
205
                                            <p>If you do not have an external account, but do have a local account, you can still log in: </p>
206
                                        [% END # /IF  identity_providers.size %]
206
                                        [% END # /IF  identity_providers.size %]
207
                                        <div class="local-login">
207
                                        <div class="local-login">
208
                                            <label for="userid">[% Koha.Preference('OPACLoginLabelTextContent') | html %]:</label>
208
                                            [% PROCESS login_label for='userid' %]
209
                                            <input class="form-control" type="text" id="userid" name="userid" autocomplete="off" />
209
                                            <input class="form-control" type="text" id="userid" name="userid" autocomplete="off" />
210
                                            <label for="password">Password:</label>
210
                                            <label for="password">Password:</label>
211
                                            <input class="form-control" type="password" id="password" name="password" autocomplete="off" />
211
                                            <input class="form-control" type="password" id="password" name="password" autocomplete="off" />
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-password-recovery.tt (-1 / +2 lines)
Lines 2-7 Link Here
2
[% USE Koha %]
2
[% USE Koha %]
3
[% USE Categories %]
3
[% USE Categories %]
4
[% USE AdditionalContents %]
4
[% USE AdditionalContents %]
5
[% PROCESS 'html_helpers.inc' %]
5
[% SET OpacNav = AdditionalContents.get( location => "OpacNav", lang => lang, library => logged_in_user.branchcode || default_branch, blocktitle => 0 ) %]
6
[% SET OpacNav = AdditionalContents.get( location => "OpacNav", lang => lang, library => logged_in_user.branchcode || default_branch, blocktitle => 0 ) %]
6
[% SET OpacNavBottom = AdditionalContents.get( location => "OpacNavBottom", lang => lang, library => logged_in_user.branchcode || default_branch, blocktitle => 0 ) %]
7
[% SET OpacNavBottom = AdditionalContents.get( location => "OpacNavBottom", lang => lang, library => logged_in_user.branchcode || default_branch, blocktitle => 0 ) %]
7
[% INCLUDE 'doc-head-open.inc' %]
8
[% INCLUDE 'doc-head-open.inc' %]
Lines 121-127 Link Here
121
                            <p>To reset your password, enter your login or your email address.</p>
122
                            <p>To reset your password, enter your login or your email address.</p>
122
                            <fieldset class="brief">
123
                            <fieldset class="brief">
123
                                <div class="form-group">
124
                                <div class="form-group">
124
                                    <label for="username">[% Koha.Preference('OPACLoginLabelTextContent') | html %]:</label>
125
                                    [% PROCESS login_label for="username" %]
125
                                    <input class="form-control" type="text" id="username" size="40" name="username" value="[% username | html %]" />
126
                                    <input class="form-control" type="text" id="username" size="40" name="username" value="[% username | html %]" />
126
                                </div>
127
                                </div>
127
128
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-registration-confirmation.tt (-1 / +2 lines)
Lines 1-6 Link Here
1
[% USE raw %]
1
[% USE raw %]
2
[% USE Koha %]
2
[% USE Koha %]
3
[% USE AdditionalContents %]
3
[% USE AdditionalContents %]
4
[% PROCESS 'html_helpers.inc' %]
4
[% SET OpacNavRight = AdditionalContents.get( location => "OpacNavRight", lang => news_lang, library => logged_in_user.branchcode || default_branch ) %]
5
[% SET OpacNavRight = AdditionalContents.get( location => "OpacNavRight", lang => news_lang, library => logged_in_user.branchcode || default_branch ) %]
5
[% SET OpacNav = AdditionalContents.get( location => "OpacNav", lang => lang, library => logged_in_user.branchcode || default_branch, blocktitle => 0 ) %]
6
[% SET OpacNav = AdditionalContents.get( location => "OpacNav", lang => lang, library => logged_in_user.branchcode || default_branch, blocktitle => 0 ) %]
6
[% SET OpacNavBottom = AdditionalContents.get( location => "OpacNavBottom", lang => lang, library => logged_in_user.branchcode || default_branch, blocktitle => 0 ) %]
7
[% SET OpacNavBottom = AdditionalContents.get( location => "OpacNavBottom", lang => lang, library => logged_in_user.branchcode || default_branch, blocktitle => 0 ) %]
Lines 86-92 Link Here
86
                                    <input type="hidden" name="koha_login_context" value="opac" />
87
                                    <input type="hidden" name="koha_login_context" value="opac" />
87
                                    <fieldset class="brief">
88
                                    <fieldset class="brief">
88
                                        <legend>Log in to your account:</legend>
89
                                        <legend>Log in to your account:</legend>
89
                                        <label for="userid">[% Koha.Preference('OPACLoginLabelTextContent') | html %]:</label>
90
                                        [% PROCESS login_label for="userid" %]
90
                                        [% IF Koha.Preference('PatronSelfRegistrationPrefillForm') %]
91
                                        [% IF Koha.Preference('PatronSelfRegistrationPrefillForm') %]
91
                                            <input class="form-control" type="text" id="userid" size="10" name="userid" value="[% borrower.userid | html %]" autocomplete="off" />
92
                                            <input class="form-control" type="text" id="userid" size="10" name="userid" value="[% borrower.userid | html %]" autocomplete="off" />
92
                                        [% ELSE %]
93
                                        [% ELSE %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reset-password.tt (-1 / +1 lines)
Lines 74-80 Link Here
74
74
75
                            <fieldset class="brief">
75
                            <fieldset class="brief">
76
                                <div class="form-group">
76
                                <div class="form-group">
77
                                    <label for="userid">[% Koha.Preference('OPACLoginLabelTextContent') | html %]:</label>
77
                                    [% PROCESS login_label for="userid" %]
78
                                    <input class="form-control" autocomplete="off" type="text"  size="25" id="userid"  name="userid" />
78
                                    <input class="form-control" autocomplete="off" type="text"  size="25" id="userid"  name="userid" />
79
                                </div>
79
                                </div>
80
                                <div class="form-group">
80
                                <div class="form-group">
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt (-2 / +2 lines)
Lines 5-10 Link Here
5
[% USE AudioAlerts %]
5
[% USE AudioAlerts %]
6
[% USE To %]
6
[% USE To %]
7
[% USE Price %]
7
[% USE Price %]
8
[% PROCESS 'html_helpers.inc' %]
8
[% INCLUDE 'doc-head-open.inc' %]
9
[% INCLUDE 'doc-head-open.inc' %]
9
<title>Self checkout &rsaquo; [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha [% END %]</title>
10
<title>Self checkout &rsaquo; [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha [% END %]</title>
10
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
11
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
Lines 419-425 Link Here
419
                                    <fieldset>
420
                                    <fieldset>
420
                                        [% IF ( Koha.Preference('SelfCheckoutByLogin') ) %]
421
                                        [% IF ( Koha.Preference('SelfCheckoutByLogin') ) %]
421
                                            <legend>Log in to your account</legend>
422
                                            <legend>Log in to your account</legend>
422
                                            <label for="patronlogin">[% Koha.Preference('OPACLoginLabelTextContent') | html %]:</label>
423
                                            [% PROCESS login_label for="patronlogin" %]
423
                                            <input type="text" id="patronlogin" class="focus noEnterSubmit" size="20" name="patronlogin" autocomplete="off"/>
424
                                            <input type="text" id="patronlogin" class="focus noEnterSubmit" size="20" name="patronlogin" autocomplete="off"/>
424
                                            <label for="patronpw">Password:</label>
425
                                            <label for="patronpw">Password:</label>
425
                                            <input type="password" id="patronpw" size="20" name="patronpw" autocomplete="off"/>
426
                                            <input type="password" id="patronpw" size="20" name="patronpw" autocomplete="off"/>
426
- 

Return to bug 33766