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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc (-2 / +2 lines)
Lines 389-397 Link Here
389
                            <fieldset class="brief">
389
                            <fieldset class="brief">
390
                                <label for="muserid">Login:</label><input type="text" id="muserid" name="userid" />
390
                                <label for="muserid">Login:</label><input type="text" id="muserid" name="userid" />
391
                                <label for="mpassword">Password:</label><input type="password" id="mpassword" name="password" />
391
                                <label for="mpassword">Password:</label><input type="password" id="mpassword" name="password" />
392
                                [% IF Koha.Preference( 'OpacLoginInstructions' ) %]
392
                                [% IF OpacLoginInstructions %]
393
                                    <div id="nologininstructions-modal" class="nologininstructions">
393
                                    <div id="nologininstructions-modal" class="nologininstructions">
394
                                        [% Koha.Preference( 'OpacLoginInstructions' ) | $raw %]
394
                                        [% PROCESS koha_news_block news => OpacLoginInstructions %]
395
                                    </div>
395
                                    </div>
396
                                [% END %]
396
                                [% END %]
397
                                [% IF Koha.Preference('OpacPasswordChange') && Categories.can_any_reset_password %]
397
                                [% IF Koha.Preference('OpacPasswordChange') && Categories.can_any_reset_password %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt (-4 / +3 lines)
Lines 199-212 Link Here
199
                                    </div>
199
                                    </div>
200
                                [% END %]
200
                                [% END %]
201
                                <div id="nologininstructions">
201
                                <div id="nologininstructions">
202
                                    [% IF Koha.Preference('OpacLoginInstructions') %]
202
                                    [% IF OpacLoginInstructions %]
203
                                        [% Koha.Preference('OpacLoginInstructions') | $raw %]
203
                                        [% PROCESS koha_news_block news => OpacLoginInstructions %]
204
                                    [% ELSE %]
204
                                    [% ELSE %]
205
                                        <h3>Don't have a password yet?</h3>
205
                                        <h3>Don't have a password yet?</h3>
206
                                        <p>If you don't have a password yet, stop by the circulation desk the next time you're in the library. We'll happily set one up for you.</p>
206
                                        <p>If you don't have a password yet, stop by the circulation desk the next time you're in the library. We'll happily set one up for you.</p>
207
                                        <h3>Don't have a library card?</h3>
207
                                        <h3>Don't have a library card?</h3>
208
                                        <p>If you don't have a library card, stop by your local library to sign up.</p>
208
                                        <p>If you don't have a library card, stop by your local library to sign up.</p>
209
                                    [% END # / IF Koha.Preference('OpacLoginInstructions') %]
209
                                    [% END # / IF OpacLoginInstructions %]
210
210
211
                                    [% IF PatronSelfRegistration && PatronSelfRegistrationDefaultCategory %]
211
                                    [% IF PatronSelfRegistration && PatronSelfRegistrationDefaultCategory %]
212
                                        <span id="registrationinstructions">
212
                                        <span id="registrationinstructions">
213
- 

Return to bug 22544