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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-main.tt (-12 / +11 lines)
Lines 14-30 Link Here
14
14
15
    [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
15
    [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
16
        [% IF ( loggedinusername ) %]
16
        [% IF ( loggedinusername ) %]
17
            <div id="loggedin" class="container-fluid">
17
            <div id="loggedin">
18
        [% ELSE %]
18
        [% ELSE %]
19
            <div id="notloggedin" class="container-fluid">
19
            <div id="notloggedin">
20
        [% END %]
20
        [% END %]
21
    [% ELSE %]
21
    [% ELSE %]
22
        <div id="notloggedin" class="container-fluid">
22
        <div id="notloggedin">
23
    [% END %]
23
    [% END %]
24
24
25
    <div class="row-fluid">
25
    <div class="row">
26
    [% IF ( OpacNav ||  OpacNavBottom ) %]
26
    [% IF ( OpacNav ||  OpacNavBottom ) %]
27
        <div class="span2">
27
        <div class="col-lg-2">
28
            <div id="navigation">
28
            <div id="navigation">
29
                [% INCLUDE 'navigation.inc' %]
29
                [% INCLUDE 'navigation.inc' %]
30
            </div>
30
            </div>
Lines 32-40 Link Here
32
    [% END %]
32
    [% END %]
33
33
34
    [% IF ( OpacNav ||  OpacNavBottom  ) %]
34
    [% IF ( OpacNav ||  OpacNavBottom  ) %]
35
        <div class="span7">
35
        <div class="col-lg-7">
36
    [% ELSE %]
36
    [% ELSE %]
37
        <div class="span9">
37
        <div class="col-lg-9">
38
    [% END %]
38
    [% END %]
39
39
40
        [% IF ( koha_news_count ) %]
40
        [% IF ( koha_news_count ) %]
Lines 62-68 Link Here
62
        </div> <!-- / .span 7/9 -->
62
        </div> <!-- / .span 7/9 -->
63
63
64
        [% IF ( ( Koha.Preference( 'opacuserlogin' ) == 1 ) || OpacNavRight ) %]
64
        [% IF ( ( Koha.Preference( 'opacuserlogin' ) == 1 ) || OpacNavRight ) %]
65
            <div class="span3">
65
            <div class="col-lg-3">
66
                [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
66
                [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
67
                    [% UNLESS ( loggedinusername ) %]
67
                    [% UNLESS ( loggedinusername ) %]
68
                        [% UNLESS ( casAuthentication ) %]
68
                        [% UNLESS ( casAuthentication ) %]
Lines 74-80 Link Here
74
                                        <label for="userid">Login:</label><input type="text" id="userid" name="userid" />
74
                                        <label for="userid">Login:</label><input type="text" id="userid" name="userid" />
75
                                        <label for="password">Password:</label><input type="password" id="password" name="password" />
75
                                        <label for="password">Password:</label><input type="password" id="password" name="password" />
76
                                    <fieldset class="action">
76
                                    <fieldset class="action">
77
                                        <input type="submit" value="Log in" class="btn" />
77
                                        <input type="submit" value="Log in" class="btn btn-default" />
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>
Lines 94-101 Link Here
94
            </div> <!-- / .span3 -->
94
            </div> <!-- / .span3 -->
95
        [% END # /opacuserlogin || OpacNavRight %]
95
        [% END # /opacuserlogin || OpacNavRight %]
96
96
97
        </div> <!-- /.container-fluid -->
97
        </div>
98
    </div> <!-- /.row-fluid -->
98
    </div> <!-- /.row -->
99
</div> <!-- /.main -->
99
</div> <!-- /.main -->
100
100
101
[% INCLUDE 'opac-bottom.inc' %]
101
[% INCLUDE 'opac-bottom.inc' %]
102
- 

Return to bug 11558