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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc (-3 / +3 lines)
Lines 398-407 Link Here
398
                                    <p>Sorry, your Shibboleth identity does not match a valid library identity. If you have a local login, you may use that below.</p>
398
                                    <p>Sorry, your Shibboleth identity does not match a valid library identity. If you have a local login, you may use that below.</p>
399
                                </div>
399
                                </div>
400
                            [% ELSE %]
400
                            [% ELSE %]
401
                                <h3>Shibboleth login</h3>
401
                                <h3 class="shib_title">Shibboleth login</h3>
402
                                <p><a id="shib_url" href="[% shibbolethLoginUrl | $raw %]">Log in using a Shibboleth account</a>.</p>
402
                                <p><a id="shib_url" class="shib_url" href="[% shibbolethLoginUrl | $raw %]">Log in using a Shibboleth account</a>.</p>
403
                                [% UNLESS Koha.Preference('opacShibOnly') %]
403
                                [% UNLESS Koha.Preference('opacShibOnly') %]
404
                                    <h3>Local login</h3>
404
                                    <h3 class="shib_local_title">Local login</h3>
405
                                [% END %]
405
                                [% END %]
406
                            [% END %]
406
                            [% END %]
407
                        [% END %]
407
                        [% END %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt (-6 / +5 lines)
Lines 83-89 Link Here
83
                                [% IF ( invalidShibLogin ) %]
83
                                [% IF ( invalidShibLogin ) %]
84
                                    <!-- This is what is displayed if shibboleth login has failed to match a koha user -->
84
                                    <!-- This is what is displayed if shibboleth login has failed to match a koha user -->
85
                                    <div class="alert alert-info">
85
                                    <div class="alert alert-info">
86
                                        <p>Sorry, your Shibboleth identity does not match a valid library identity.</p>
86
                                        <p class="shib_invalid">Sorry, your Shibboleth identity does not match a valid library identity.</p>
87
                                        [% UNLESS ( Koha.Preference('OPACShibOnly') ) %]
87
                                        [% UNLESS ( Koha.Preference('OPACShibOnly') ) %]
88
                                            [% IF ( casAuthentication ) %]
88
                                            [% IF ( casAuthentication ) %]
89
                                                [% IF ( invalidCasLogin ) %]
89
                                                [% IF ( invalidCasLogin ) %]
Lines 98-113 Link Here
98
                                        [% END %]
98
                                        [% END %]
99
                                    </div>
99
                                    </div>
100
                                [% ELSE %]
100
                                [% ELSE %]
101
                                    <h2>Shibboleth Login</h2>
101
                                    <h2 class="shib_title">Shibboleth Login</h2>
102
                                    <p><a href="[% shibbolethLoginUrl | $raw %]">Log in using a Shibboleth account.</a></p>
102
                                    <p><a class="shib_url" href="[% shibbolethLoginUrl | $raw %]">Log in using a Shibboleth account.</a></p>
103
                                [% END # /IF invalidShibLogin %]
103
                                [% END # /IF invalidShibLogin %]
104
                                [% UNLESS ( Koha.Preference('OPACShibOnly') ) %]
104
                                [% UNLESS ( Koha.Preference('OPACShibOnly') ) %]
105
                                    [% IF ( casAuthentication ) %]
105
                                    [% IF ( casAuthentication ) %]
106
                                        <h2>CAS login</h2>
106
                                        <h2>CAS login</h2>
107
                                        <p>If you do not have a Shibboleth account, but you do have a CAS account, you can use CAS.</p>
107
                                        <p>If you do not have a Shibboleth account, but you do have a CAS account, you can use CAS.</p>
108
                                    [% ELSE %]
108
                                    [% ELSE %]
109
                                        <h2>Local login</h2>
109
                                        <h2 class="shib_local_title">Local login</h2>
110
                                        <p>If you do not have a Shibboleth account, but you do have a local login, then you may login below.</p>
110
                                        <p class="shib_local_text">If you do not have a Shibboleth account, but you do have a local login, then you may login below.</p>
111
                                    [% END %]
111
                                    [% END %]
112
                                [% END %]
112
                                [% END %]
113
                            [% END # /IF shibbolethAuthentication %]
113
                            [% END # /IF shibbolethAuthentication %]
114
- 

Return to bug 35147