synch'ing 2.0.0 branch (RC4 tag) and head
[koha.git] / koha-tmpl / intranet-tmpl / default / en / auth.tmpl
1
2 <!-- TMPL_IF NAME="nopermission" -->
3 <!-- This is what is displayed if user doesn't have permission -->
4 <h2>Sorry, Koha doesn't think you have permission for this page.</h2>
5 <!-- /TMPL_IF -->
6
7 <!-- TMPL_IF NAME="timed_out" -->
8 <!-- This is what is displayed if login has timed out -->
9 <h2>Sorry, your session has timed out.  Please login again.</h2>
10 <!-- /TMPL_IF -->
11
12 <!-- TMPL_IF NAME="different_ip" -->
13 <!-- This is what is displayed if user's IP has changed -->
14 <h2>You are accessing Koha from a different ip address! Please login again.</h2>
15 <!-- /TMPL_IF -->
16
17 <!-- TMPL_IF NAME="invalid_username_or_password" -->
18 <!-- This is what is displayed if the username or password doesn't work -->
19 <h2>You entered an incorrect username or password.  Please try again.</h2>
20 <!-- /TMPL_IF -->
21
22
23 <!-- TMPL_IF NAME="loginprompt" -->
24 <!-- login prompt time-->
25
26 <center>
27
28 <form action='<!-- TMPL_VAR NAME="url" -->' method="post">
29 <!-- TMPL_LOOP NAME="INPUTS" -->
30   <input type="hidden" name='<!-- TMPL_VAR NAME="name" -->' value='<!-- TMPL_VAR NAME="value" -->'>
31 <!-- /TMPL_LOOP -->
32 <table border="0" cellpadding="10" cellspacing="0" width="60%">
33     <tr><td align="center" valign="top">
34
35     <table border="0" bgcolor="#dddddd" cellpadding="10" cellspacing="0">
36     <tr><th colspan="2"><font size="+2">Koha Login</font></th></tr>
37     <tr><td>Card number:</td><td><input name="userid"></td></tr>
38     <tr><td>Password:</td><td><input type="password" name="password"></td></tr>
39     <tr><td colspan="2" align="center"><input type="submit" value="login"></td></tr>
40     </table>
41     </td><td align="center" valign="top">
42
43
44     </td></tr>
45 </table>
46 </form>
47
48
49 <!-- /TMPL_IF -->