nomenclature improvements for translation
[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="invalid_username_or_password" -->
31 <div id="login_error"><strong>Error: </strong>Invalid username or password</div>
32 <!-- /TMPL_IF -->
33
34 <!-- login prompt time-->
35 <form action="<!-- TMPL_VAR NAME="url" -->" method="post" name="loginform" id="loginform">
36 <!-- TMPL_LOOP NAME="INPUTS" -->
37     <input type="hidden" name="<!-- TMPL_VAR NAME="name" -->" value="<!-- TMPL_VAR NAME="value" -->" />
38 <!-- /TMPL_LOOP -->
39 <p><label>Username:<br />
40 <input type="text" name="userid" id="userid" class="input focus" value="<!-- TMPL_VAR NAME="userid" -->" size="20" tabindex="1" /></label>
41 </p>
42 <p><label>Password:<br />
43 <input type="password" name="password" id="password" class="input" value="" size="20" tabindex="2" /></label>
44 </p>
45 <!-- TMPL_UNLESS name="IndependantBranches" -->
46     <p><label for="branch">Library:<br />
47     <select name="branch" id="branch" class="input">
48     <!-- TMPL_LOOP NAME="branchloop" -->
49     <option value="<!-- TMPL_VAR NAME='branchcode' -->"><!-- TMPL_VAR NAME='branchname' --></option>
50     <!-- /TMPL_LOOP -->
51     </select></label>
52     </p>
53 <!-- /TMPL_UNLESS -->
54 <!-- <p><label><input name="rememberme" type="checkbox" id="rememberme" value="forever" tabindex="3" />Remember me</label></p> -->
55
56 <p class="submit"><input id="submit" type="submit" value="Login &raquo;" tabindex="4" /></p>
57 </form>
58 <!--<ul> -->
59 <!--    <li><a href="/cgi-bin/koha/lostpassword.pl" title="Password Lost and Found">Lost your password?</a></li> -->
60 <!-- </ul> -->
61
62 </div>
63 </div>
64
65 <!-- TMPL_INCLUDE name="intranet-bottom.inc" -->