BUGFIX : highlighting term fixes
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / auth.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; 
3     <!-- TMPL_IF NAME="nopermission" -->Access denied<!-- /TMPL_IF -->
4     <!-- TMPL_IF NAME="timed_out" -->Session timed out<!-- /TMPL_IF -->
5     <!-- TMPL_IF NAME="different_ip" -->IP address change<!-- /TMPL_IF -->
6     <!-- TMPL_IF NAME="invalid_username_or_password" -->Invalid username or password<!-- /TMPL_IF -->
7     <!-- TMPL_IF NAME="loginprompt" -->Log in to Koha<!-- /TMPL_IF -->
8 </title>
9 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
10 </head>
11 <body>
12
13 <div id="doc" class="yui-t7">
14    <div id="bd">
15
16 <div id="login">
17 <h1><a href="http://koha.org">Koha</a></h1>
18 <!-- TMPL_IF NAME="nopermission" -->
19 <div id="login_error"><strong>Error: </strong>Unauthorized user<a href="/cgi-bin/koha/mainpage.pl?logout.x=1">click to log out</a></div>
20 <!-- /TMPL_IF -->
21
22 <!-- TMPL_IF NAME="timed_out" -->
23 <div id="login_error"><strong>Error: </strong>Session timed out, please log in again</div>
24 <!-- /TMPL_IF -->
25
26 <!-- TMPL_IF NAME="different_ip" -->
27 <div id="login_error"><strong>Error: </strong>IP address has changed, please log in again </div>
28 <!-- /TMPL_IF -->
29
30 <!-- TMPL_IF NAME="wrongip" -->
31 <div id="login_error"><strong>Error: </strong>Independent Branches and Autolocation are switched on and you are logging in with an IP address that doesn't match your branch. </div>
32 <!-- /TMPL_IF -->
33
34 <!-- TMPL_IF NAME="invalid_username_or_password" -->
35 <div id="login_error"><strong>Error: </strong>Invalid username or password</div>
36 <!-- /TMPL_IF -->
37
38 <!-- login prompt time-->
39 <form action="<!-- TMPL_VAR NAME="url" -->" method="post" name="loginform" id="loginform">
40 <!-- TMPL_LOOP NAME="INPUTS" -->
41     <input type="hidden" name="<!-- TMPL_VAR NAME="name" -->" value="<!-- TMPL_VAR NAME="value" ESCAPE="html" -->" />
42 <!-- /TMPL_LOOP -->
43 <p><label for="userid">Username:</label>
44 <input type="text" name="userid" id="userid" class="input focus" value="<!-- TMPL_VAR NAME="userid" -->" size="20" tabindex="1" />
45 </p>
46 <p><label for="password">Password:</label>
47 <input type="password" name="password" id="password" class="input" value="" size="20" tabindex="2" />
48 </p>
49
50 <!-- TMPL_IF NAME="AutoLocation" --><!-- TMPL_ELSE -->
51 <!-- TMPL_IF NAME="IndependantBranches" --><!-- TMPL_ELSE -->
52 <p><label for="branch">Library:</label>
53     <select name="branch" id="branch" class="input" tabindex="3">
54     <option value="">Default</option>
55     <!-- TMPL_LOOP NAME="branchloop" -->
56     <option value="<!-- TMPL_VAR NAME='branchcode' -->"><!-- TMPL_VAR NAME='branchname' --></option>
57     <!-- /TMPL_LOOP -->
58     </select>
59     </p><!-- /TMPL_IF -->
60         <!-- /TMPL_IF -->
61
62 <!-- <p><label><input name="rememberme" type="checkbox" id="rememberme" value="forever" tabindex="3" />Remember me</label></p> -->
63
64 <p class="submit"><input id="submit" type="submit" value="Login &raquo;" tabindex="4" /></p>
65 </form>
66 <!--<ul> -->
67 <!--    <li><a href="/cgi-bin/koha/lostpassword.pl" title="Password Lost and Found">Lost your password?</a></li> -->
68 <!-- </ul> -->
69
70 </div>
71 </div>
72
73 <!-- TMPL_INCLUDE name="intranet-bottom.inc" -->