New programmer templates
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / auth.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" --><!-- TMPL_IF NAME="nopermission" -->Access Denied<!-- /TMPL_IF --><!-- TMPL_IF NAME="timed_out" -->Session Timed Out --<!-- /TMPL_IF --><!-- TMPL_IF NAME="different_ip" -->IP Change -- <!-- /TMPL_IF --><!-- TMPL_IF NAME="invalid_username_or_password" -->Invalid Username or Password -- <!-- /TMPL_IF --><!-- TMPL_IF NAME="loginprompt" -->Log in to Koha<!-- /TMPL_IF --><!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
2
3 <!-- TMPL_IF NAME="nopermission" -->
4 <!-- This is what is displayed if user doesn"t have permission --><h3>Login Error</h3>
5 <p>Sorry, Koha doesn"t think you have permission for this page.</p>
6 <!-- /TMPL_IF -->
7
8 <!-- TMPL_IF NAME="timed_out" -->
9 <!-- This is what is displayed if login has timed out -->
10 <h3>Login Error</h3><p>Sorry, your session has timed out.  Please login again.</p>
11 <!-- /TMPL_IF -->
12
13 <!-- TMPL_IF NAME="different_ip" -->
14 <!-- This is what is displayed if user"s IP has changed -->
15 <h3>Login Error</h3><p>You are accessing Koha from a different ip address! Please login again.</p>
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 <h3>Login Error</h3><p>You entered an incorrect username or password.  Please try again.</p>
21 <!-- /TMPL_IF -->
22
23
24 <!-- TMPL_IF NAME="loginprompt" -->
25 <!-- login prompt time-->
26
27 <form action="<!-- TMPL_VAR NAME="url" -->" method="post" name="mainform" id="mainform">
28 <!-- TMPL_LOOP NAME="INPUTS" -->
29   <input type="hidden" name="<!-- TMPL_VAR NAME="name" -->" value="<!-- TMPL_VAR NAME="value" -->" />
30 <!-- /TMPL_LOOP -->
31
32 <table>
33         <caption>Log In to Koha</caption>
34     <tr><th scope="row"><label for="userid">Cardnumber:</label></th><td><input name="userid" id="userid" /></td></tr>
35     <tr><th scope="row"><label for="password">Password:</label></th><td><input type="password" name="password" id="password" /></td></tr>
36     </table>
37 <p><input type="submit" value="Submit" /></p>
38 </form>
39
40
41 <!-- /TMPL_IF -->
42
43 <!-- TMPL_INCLUDE name="intranet-bottom.inc" -->