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

(-)a/C4/Auth.pm (-1 / +1 lines)
Lines 398-403 sub get_template_and_user { Link Here
398
            LibraryNameTitle          => "" . $LibraryNameTitle,
398
            LibraryNameTitle          => "" . $LibraryNameTitle,
399
            LoginBranchname           => C4::Context->userenv?C4::Context->userenv->{"branchname"}:"",
399
            LoginBranchname           => C4::Context->userenv?C4::Context->userenv->{"branchname"}:"",
400
            OPACAmazonCoverImages     => C4::Context->preference("OPACAmazonCoverImages"),
400
            OPACAmazonCoverImages     => C4::Context->preference("OPACAmazonCoverImages"),
401
            opacbelowloginbox         => C4::Context->preference("OpacBelowLoginBox"),
401
            OPACFRBRizeEditions       => C4::Context->preference("OPACFRBRizeEditions"),
402
            OPACFRBRizeEditions       => C4::Context->preference("OPACFRBRizeEditions"),
402
            OpacHighlightedWords      => C4::Context->preference("OpacHighlightedWords"),
403
            OpacHighlightedWords      => C4::Context->preference("OpacHighlightedWords"),
403
            OPACItemHolds             => C4::Context->preference("OPACItemHolds"),
404
            OPACItemHolds             => C4::Context->preference("OPACItemHolds"),
Lines 1064-1070 sub checkauth { Link Here
1064
        IndependentBranches=> C4::Context->preference("IndependentBranches"),
1065
        IndependentBranches=> C4::Context->preference("IndependentBranches"),
1065
        AutoLocation       => C4::Context->preference("AutoLocation"),
1066
        AutoLocation       => C4::Context->preference("AutoLocation"),
1066
        wrongip            => $info{'wrongip'},
1067
        wrongip            => $info{'wrongip'},
1067
        opacbelowloginbox  => C4::Context->preference("OpacBelowLoginBox"),
1068
        PatronSelfRegistration => C4::Context->preference("PatronSelfRegistration"),
1068
        PatronSelfRegistration => C4::Context->preference("PatronSelfRegistration"),
1069
        PatronSelfRegistrationDefaultCategory => C4::Context->preference("PatronSelfRegistrationDefaultCategory"),
1069
        PatronSelfRegistrationDefaultCategory => C4::Context->preference("PatronSelfRegistrationDefaultCategory"),
1070
        persona            => C4::Context->preference("Persona"),
1070
        persona            => C4::Context->preference("Persona"),
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc (-2 / +4 lines)
Lines 276-281 Link Here
276
                    <fieldset class="brief">
276
                    <fieldset class="brief">
277
                        <label for="muserid">Login:</label><input type="text" id="muserid" name="userid" />
277
                        <label for="muserid">Login:</label><input type="text" id="muserid" name="userid" />
278
                        <label for="mpassword">Password:</label><input type="password" id="mpassword" name="password" />
278
                        <label for="mpassword">Password:</label><input type="password" id="mpassword" name="password" />
279
                    [% IF ( opacbelowloginbox ) %]
280
                        [% opacbelowloginbox %]
281
                    [% END %]
279
                    [% 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 %]
282
                    [% 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 %]
280
                    </fieldset>
283
                    </fieldset>
281
            </div>
284
            </div>
Lines 284-287 Link Here
284
                <a href="#" data-dismiss="modal" aria-hidden="true" class="cancel">Cancel</a>
287
                <a href="#" data-dismiss="modal" aria-hidden="true" class="cancel">Cancel</a>
285
            </div>
288
            </div>
286
        </form> <!-- /#auth -->
289
        </form> <!-- /#auth -->
287
    </div>  <!-- /#modalAuth  -->
290
    </div>  <!-- /#modalAuth  -->
288
- 

Return to bug 6864