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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt (-2 / +2 lines)
Lines 69-78 Link Here
69
        <input type="hidden" name="[% INPUT.name | html %]" value="[% INPUT.value | html %]" />
69
        <input type="hidden" name="[% INPUT.name | html %]" value="[% INPUT.value | html %]" />
70
    [% END %]
70
    [% END %]
71
    <p><label for="userid">Username:</label>
71
    <p><label for="userid">Username:</label>
72
    <input type="text" name="userid" id="userid" class="input focus" value="[% userid | html %]" size="20" tabindex="1" />
72
    <input type="text" name="userid" id="userid" class="input focus" value="[% userid | html %]" size="20" tabindex="1" autocomplete="off" />
73
    </p>
73
    </p>
74
    <p><label for="password">Password:</label>
74
    <p><label for="password">Password:</label>
75
    <input type="password" name="password" id="password" class="input" value="" size="20" tabindex="2" />
75
    <input type="password" name="password" id="password" class="input" value="" size="20" tabindex="2" autocomplete="off" />
76
    </p>
76
    </p>
77
77
78
    [% UNLESS IndependentBranches %]
78
    [% UNLESS IndependentBranches %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc (-2 / +2 lines)
Lines 392-399 Link Here
392
                        [% UNLESS Koha.Preference('opacShibOnly') %]
392
                        [% UNLESS Koha.Preference('opacShibOnly') %]
393
                            <input type="hidden" name="koha_login_context" value="opac" />
393
                            <input type="hidden" name="koha_login_context" value="opac" />
394
                            <fieldset class="brief">
394
                            <fieldset class="brief">
395
                                <label for="muserid">Login:</label><input type="text" id="muserid" name="userid" />
395
                                <label for="muserid">Login:</label><input type="text" id="muserid" name="userid" autocomplete="off" />
396
                                <label for="mpassword">Password:</label><input type="password" id="mpassword" name="password" />
396
                                <label for="mpassword">Password:</label><input type="password" id="mpassword" name="password" autocomplete="off" />
397
                                [% IF OpacLoginInstructions %]
397
                                [% IF OpacLoginInstructions %]
398
                                    <div id="nologininstructions-modal" class="nologininstructions">
398
                                    <div id="nologininstructions-modal" class="nologininstructions">
399
                                        [% PROCESS koha_news_block news => OpacLoginInstructions %]
399
                                        [% PROCESS koha_news_block news => OpacLoginInstructions %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-main.tt (-3 / +2 lines)
Lines 190-198 Link Here
190
                                            <p>If you do not have a Google account, but do have a local account, you can still log in: </p>
190
                                            <p>If you do not have a Google account, but do have a local account, you can still log in: </p>
191
                                        [% END # /IF GoogleOpenIDConnect %]
191
                                        [% END # /IF GoogleOpenIDConnect %]
192
                                        <label for="userid">Login:</label>
192
                                        <label for="userid">Login:</label>
193
                                        <input class="form-control" type="text" id="userid" name="userid" />
193
                                        <input class="form-control" type="text" id="userid" name="userid" autocomplete="off" />
194
                                        <label for="password">Password:</label>
194
                                        <label for="password">Password:</label>
195
                                        <input class="form-control" type="password" id="password" name="password" />
195
                                        <input class="form-control" type="password" id="password" name="password" autocomplete="off" />
196
                                        <fieldset class="action">
196
                                        <fieldset class="action">
197
                                            <input type="submit" value="Log in" class="btn btn-primary" />
197
                                            <input type="submit" value="Log in" class="btn btn-primary" />
198
                                        </fieldset>
198
                                        </fieldset>
199
- 

Return to bug 29487