- Adding email address to patron information section
[koha.git] / koha-tmpl / intranet-tmpl / npl / en / auth.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Koha -- <!-- 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-circ-close.inc" -->
2 <!-- TMPL_INCLUDE NAME="masthead.inc" -->
3 <div id="auth">
4
5 <!-- TMPL_IF NAME="nopermission" -->
6 <div class="error"><!-- This is what is displayed if user doesn"t have permission --><h3>Login Error</h3>
7 Sorry, Koha doesn"t think you have permission for this page.</div>
8 <!-- /TMPL_IF -->
9
10 <!-- TMPL_IF NAME="timed_out" -->
11 <div class="error"><!-- This is what is displayed if login has timed out -->
12 <h3>Login Error</h3>Sorry, your session has timed out.  Please login again.</div>
13 <!-- /TMPL_IF -->
14
15 <!-- TMPL_IF NAME="different_ip" -->
16 <div class="error"><!-- This is what is displayed if user"s IP has changed -->
17 <h3>Login Error</h3>You are accessing Koha from a different ip address! Please login again.</div>
18 <!-- /TMPL_IF -->
19
20 <!-- TMPL_IF NAME="invalid_username_or_password" -->
21 <div class="error"><!-- This is what is displayed if the username or password doesn"t work -->
22 <h3>Login Error</h3>You entered an incorrect username or password.  Please try again.</div>
23 <!-- /TMPL_IF -->
24
25
26 <!-- TMPL_IF NAME="loginprompt" -->
27 <!-- login prompt time-->
28
29 <form action="<!-- TMPL_VAR NAME="url" -->" method="post" name="mainform" id="mainform">
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>Log In to Koha</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></th><td><input type="password" name="password" id="password" /></td></tr>
38     </table>
39 <p><input type="submit" value="Submit" class="submit" /></p></div>
40 </form>
41
42
43 <!-- /TMPL_IF -->
44 </div>
45 <!-- TMPL_INCLUDE name="intranet-bottom.inc" -->