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