Bug 13618: Add html filters to all the variables
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / auth.tt
1 [% USE raw %]
2 [% USE Koha %]
3 [% USE Branches %]
4 [% SET footerjs = 1 %]
5 [% INCLUDE 'doc-head-open.inc' %]
6 <title>Koha &rsaquo; 
7     [% IF ( nopermission ) %]Access denied[% END %]
8     [% IF ( timed_out ) %]Session timed out[% END %]
9     [% IF ( different_ip ) %]IP address change[% END %]
10     [% IF too_many_login_attempts %]This account has been locked.
11     [% ELSIF invalid_username_or_password %]Invalid username or password[% END %]
12     [% IF ( loginprompt ) %]Log in to Koha[% END %]
13 </title>
14 [% INCLUDE 'doc-head-close.inc' %]
15 </head>
16 <body id="main_auth" class="main_main-auth">
17
18 <div class="main container-fluid">
19
20 <div id="login">
21 <h1><a href="http://koha-community.org">Koha</a></h1>
22 [% IF (Koha.Preference('StaffLoginInstructions')) %]<div id="login_instructions">[% Koha.Preference('StaffLoginInstructions') | $raw %]</div>[% END %]
23 [% IF ( nopermission ) %]
24 <div id="login_error">
25     <strong>Error:</strong>
26     You do not have permission to access this page.
27 </div>
28 <p><strong>Log in as a different user</strong></p></h2>
29 [% END %]
30
31 [% IF ( timed_out ) %]
32 <div id="login_error"><strong>Error: </strong>Session timed out.<br /> Please log in again</div>
33 [% END %]
34
35 [% IF ( different_ip ) %]
36 <div id="login_error"><strong>Error: </strong>IP address has changed. Please log in again </div>
37 [% END %]
38
39 [% IF ( wrongip ) %]
40 <div id="login_error"><strong>Error: </strong>Autolocation is switched on and you are logging in with an IP address that doesn't match your library. </div>
41 [% END %]
42
43 [% IF too_many_login_attempts %]
44     <div id="login_error"><strong>Error: </strong>This account has been locked!</div>
45     [% IF Koha.Preference('OpacResetPassword') && Koha.Preference('OpacBaseURL') %]
46         <a href="[% Koha.Preference('OpacBaseURL') | html %]/cgi-bin/koha/opac-password-recovery.pl">You must reset your password</a>.
47     [% END %]
48 [% ELSIF invalid_username_or_password %]
49 <div id="login_error"><strong>Error: </strong>Invalid username or password</div>
50 [% END %]
51
52 <!-- login prompt time-->
53 <form action="[% script_name | html %]" method="post" name="loginform" id="loginform">
54     <input type="hidden" name="koha_login_context" value="intranet" />
55 [% FOREACH INPUT IN INPUTS %]
56     <input type="hidden" name="[% INPUT.name | html %]" value="[% INPUT.value | html %]" />
57 [% END %]
58 <p><label for="userid">Username:</label>
59 <input type="text" name="userid" id="userid" class="input focus" value="[% userid | html %]" size="20" tabindex="1" />
60 </p>
61 <p><label for="password">Password:</label>
62 <input type="password" name="password" id="password" class="input" value="" size="20" tabindex="2" />
63 </p>
64
65 [% UNLESS IndependentBranches %]
66     <p>
67         <label for="branch">Library:</label>
68         <select name="branch" id="branch" class="input" tabindex="3">
69             <option value="">My library</option>
70             [% FOREACH l IN Branches.all( unfiltered => 1 ) %]
71                 <option value="[% l.branchcode | html %]">[% l.branchname | html %]</option>
72             [% END %]
73         </select>
74     </p>
75 [% END %]
76
77 <!-- <p><label><input name="rememberme" type="checkbox" id="rememberme" value="forever" tabindex="3" />Remember me</label></p> -->
78
79 <p class="submit"><input id="submit" type="submit" value="Login" tabindex="4" /></p>
80 </form>
81 [% IF ( casAuthentication ) %]
82 <h4>Cas login</h4>
83
84 [% IF ( invalidCasLogin ) %]
85 <!-- This is what is displayed if cas login has failed -->
86 <p>Sorry, the CAS login failed.</p>
87 [% END %]
88
89 [% IF ( casServerUrl ) %]
90     <p><a href="[% casServerUrl | html %]">If you have a CAS account, please click here to login</a>.<p>
91 [% END %]
92
93 [% IF ( casServersLoop ) %]
94     <p>If you have a CAS account, please choose against which one you would like to authenticate:</p>
95 <ul>
96     [% FOREACH casServer IN casServersLoop %]
97         <li><a href="[% casServer.value | html %]">[% casServer.name | html %]</a></li>
98     [% END %]
99 [% END %]
100 [% END %]
101
102 [% IF ( nopermission ) %]
103     <p><a href="javascript:window.history.back()">[Previous page]</a>
104     <a href="/">[Main page]</a></p>
105 [% END %]
106
107
108 <!--<ul> -->
109 <!--    <li><a href="/cgi-bin/koha/lostpassword.pl" title="Password lost and found">Lost your password?</a></li> -->
110 <!-- </ul> -->
111
112 </div>
113
114 [% MACRO jsinclude BLOCK %]
115     <script type="text/javascript">
116         $(document).ready( function() {
117             if ( document.location.hash ) {
118                 $( '#loginform' ).append( '<input name="auth_forwarded_hash" type="hidden" value="' + document.location.hash + '"/>' );
119             }
120         });
121     </script>
122 [% END %]
123 <!-- the main div is closed in intranet-bottom.inc -->
124 [% INCLUDE 'intranet-bottom.inc' %]