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