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

(-)a/C4/Auth.pm (-1 lines)
Lines 421-427 sub get_template_and_user { Link Here
421
            LibraryNameTitle          => "" . $LibraryNameTitle,
421
            LibraryNameTitle          => "" . $LibraryNameTitle,
422
            LoginBranchname           => C4::Context->userenv?C4::Context->userenv->{"branchname"}:"",
422
            LoginBranchname           => C4::Context->userenv?C4::Context->userenv->{"branchname"}:"",
423
            OPACAmazonCoverImages     => C4::Context->preference("OPACAmazonCoverImages"),
423
            OPACAmazonCoverImages     => C4::Context->preference("OPACAmazonCoverImages"),
424
            NoLoginInstructions      => C4::Context->preference("NoLoginInstructions"),
425
            OPACFRBRizeEditions       => C4::Context->preference("OPACFRBRizeEditions"),
424
            OPACFRBRizeEditions       => C4::Context->preference("OPACFRBRizeEditions"),
426
            OpacHighlightedWords      => C4::Context->preference("OpacHighlightedWords"),
425
            OpacHighlightedWords      => C4::Context->preference("OpacHighlightedWords"),
427
            OPACItemHolds             => C4::Context->preference("OPACItemHolds"),
426
            OPACItemHolds             => C4::Context->preference("OPACItemHolds"),
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc (-4 / +4 lines)
Lines 285-295 Link Here
285
                    <fieldset class="brief">
285
                    <fieldset class="brief">
286
                        <label for="muserid">Login:</label><input type="text" id="muserid" name="userid" />
286
                        <label for="muserid">Login:</label><input type="text" id="muserid" name="userid" />
287
                        <label for="mpassword">Password:</label><input type="password" id="mpassword" name="password" />
287
                        <label for="mpassword">Password:</label><input type="password" id="mpassword" name="password" />
288
                        <div class="NoLoginInstructions">
288
                    [% IF Koha.Preference( 'NoLoginInstructions' ) %]
289
                           [% IF ( NoLoginInstructions ) %]
289
                        <div id="nologininstructions-modal">
290
                              [% NoLoginInstructions %]
290
                            [% Koha.Preference( 'NoLoginInstructions' ) %]
291
                           [% END %]
292
                        </div>
291
                        </div>
292
                    [% END %]
293
                        [% IF PatronSelfRegistration && PatronSelfRegistrationDefaultCategory %]<div id="mpatronregistration"><p>Don't have an account? <a href="/cgi-bin/koha/opac-memberentry.pl">Register here.</a></p></div>[% END %]
293
                        [% IF PatronSelfRegistration && PatronSelfRegistrationDefaultCategory %]<div id="mpatronregistration"><p>Don't have an account? <a href="/cgi-bin/koha/opac-memberentry.pl">Register here.</a></p></div>[% END %]
294
                    </fieldset>
294
                    </fieldset>
295
            </div>
295
            </div>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-main.tt (-5 / +4 lines)
Lines 78-88 Link Here
78
                                    </fieldset>
78
                                    </fieldset>
79
                                    [% IF PatronSelfRegistration && PatronSelfRegistrationDefaultCategory %]<div id="patronregistration"><p>Don't have an account? <a href="/cgi-bin/koha/opac-memberentry.pl">Register here.</a></p></div>[% END %]
79
                                    [% IF PatronSelfRegistration && PatronSelfRegistrationDefaultCategory %]<div id="patronregistration"><p>Don't have an account? <a href="/cgi-bin/koha/opac-memberentry.pl">Register here.</a></p></div>[% END %]
80
                                    </fieldset>
80
                                    </fieldset>
81
                                    <div class="NoLoginInstructions">
81
                                [% IF Koha.Preference( 'NoLoginInstructions' ) %]
82
                                    [% IF ( NoLoginInstructions ) %]
82
                                    <div id="nologininstructions-main">
83
                                        [% NoLoginInstructions %]
83
                                        [% Koha.Preference( 'NoLoginInstructions' ) %]
84
                                    [% END %]
85
                                    </div>
84
                                    </div>
85
                                [% END %]
86
                                </form>
86
                                </form>
87
                            </div> <!-- /#login -->
87
                            </div> <!-- /#login -->
88
                        [% END # /casAuthentication %]
88
                        [% END # /casAuthentication %]
89
- 

Return to bug 12683