New NPL templates
[koha_gimpoz] / koha-tmpl / intranet-tmpl / npl / en / auth.tmpl
1 <!-- TMPL_INCLUDE NAME="main-top.inc" -->
2 <!-- TMPL_INCLUDE NAME="masthead.inc" -->
3 <div id="main">
4
5 <!-- TMPL_IF NAME="nopermission" -->
6 <!-- This is what is displayed if user doesn"t have permission -->
7 <h2>Sorry, Koha doesn"t think you have permission for this page.</h2>
8 <!-- /TMPL_IF -->
9
10 <!-- TMPL_IF NAME="timed_out" -->
11 <!-- This is what is displayed if login has timed out -->
12 <h2>Sorry, your session has timed out.  Please login again.</h2>
13 <!-- /TMPL_IF -->
14
15 <!-- TMPL_IF NAME="different_ip" -->
16 <!-- This is what is displayed if user"s IP has changed -->
17 <h2>You are accessing Koha from a different ip address! Please login again.</h2>
18 <!-- /TMPL_IF -->
19
20 <!-- TMPL_IF NAME="invalid_username_or_password" -->
21 <!-- This is what is displayed if the username or password doesn"t work -->
22 <h2>You entered an incorrect username or password.  Please try again.</h2>
23 <!-- /TMPL_IF -->
24
25
26 <!-- TMPL_IF NAME="loginprompt" -->
27 <!-- login prompt time-->
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
34 <div class="details">    <table>
35         <caption>Koha Login</caption>
36     <tr><th><label for="userid">Cardnumber:</label></th><td><input name="userid" id="userid" /></td></tr>
37     <tr><th><label for="password">Password:</label></h><td><input type="password" name="password" id="password" /></td></tr>
38     </table></div>
39 <input type="submit" value="Log In" class="submit" />
40 </form>
41
42
43 <!-- /TMPL_IF -->
44 </div>
45 <!-- TMPL_INCLUDE name="intranet-bottom.inc" -->