rel_3_0 moved to HEAD
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / auth.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2     <!-- TMPL_IF NAME="nopermission" -->Access Denied<!-- /TMPL_IF -->
3     <!-- TMPL_IF NAME="timed_out" -->Session Timed Out --<!-- /TMPL_IF -->
4     <!-- TMPL_IF NAME="different_ip" -->IP Change -- <!-- /TMPL_IF -->
5     <!-- TMPL_IF NAME="invalid_username_or_password" -->Invalid Username or Password -- <!-- /TMPL_IF -->
6     <!-- TMPL_IF NAME="loginprompt" -->Log in to Koha<!-- /TMPL_IF -->
7     <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
8 <div id="login">
9 <h1><a href="" title=""><span class="hide">Log in to Koha</span></a></h1>
10 <!-- TMPL_IF NAME="nopermission" -->
11 <!-- This is what is displayed if user doesn"t have permission --><h3>Login Error</h3>
12 <p>Sorry, Koha doesn"t think you have permission for this page.</p>
13 <!-- /TMPL_IF -->
14
15 <!-- TMPL_IF NAME="timed_out" -->
16 <!-- This is what is displayed if login has timed out -->
17 <h3>Login Error</h3><p>Sorry, your session has timed out.  Please login again.</p>
18 <!-- /TMPL_IF -->
19
20 <!-- TMPL_IF NAME="different_ip" -->
21 <!-- This is what is displayed if user"s IP has changed -->
22 <h3>Login Error</h3><p>You are accessing Koha from a different ip address! Please login again.</p>
23 <!-- /TMPL_IF -->
24
25 <!-- TMPL_IF NAME="invalid_username_or_password" -->
26 <!-- This is what is displayed if the username or password doesn"t work -->
27 <h3>Login Error</h3><p>You entered an incorrect username or password.  Please try again.</p>
28 <!-- /TMPL_IF -->
29
30
31 <!-- TMPL_IF NAME="loginprompt" -->
32 <!-- login prompt time-->
33 <form action="<!-- TMPL_VAR NAME="url" -->" method="post" name="mainform" id="mainform">
34 <!-- TMPL_LOOP NAME="INPUTS" -->
35     <input type="hidden" name="<!-- TMPL_VAR NAME="name" -->" value="<!-- TMPL_VAR NAME="value" -->" />
36 <!-- /TMPL_LOOP -->
37 <p>
38 <label>Username:<br />
39 <input type="text" name="userid" id="userid" class="input" value="" size="20" tabindex="10" /></label>
40 </p>
41 <p>
42 <label>Password:<br />
43 <input type="password" name="password" id="password" class="input" value="" size="20" tabindex="20" /></label>
44 </p>    
45 <p class="submit"><input type="submit" value="Login &raquo;" /></p>
46 </form>
47
48 <!-- /TMPL_IF -->
49 <!-- TMPL_INCLUDE name="intranet-bottom.inc" -->