Adding link to the committed budget breakdown
[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         <div class="yui-g">
16
17 <div id="login">
18 <h1><a href="http://koha.org">Koha</a></h1>
19 <!-- TMPL_IF NAME="nopermission" -->
20 <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>
21 <!-- /TMPL_IF -->
22
23 <!-- TMPL_IF NAME="timed_out" -->
24 <div id="login_error"><strong>Error</strong>: session timed out, please log in again</div>
25 <!-- /TMPL_IF -->
26
27 <!-- TMPL_IF NAME="different_ip" -->
28 <div id="login_error"><strong>Error</strong>: IP address has changed, please log in again </div>
29 <!-- /TMPL_IF -->
30
31 <!-- TMPL_IF NAME="invalid_username_or_password" -->
32 <div id="login_error"><strong>Error</strong>: Incorrect username or password</div>
33 <!-- /TMPL_IF -->
34
35 <!-- login prompt time-->
36 <form action="<!-- TMPL_VAR NAME="url" -->" method="post" name="loginform" id="loginform">
37 <!-- TMPL_LOOP NAME="INPUTS" -->
38     <input type="hidden" name="<!-- TMPL_VAR NAME="name" -->" value="<!-- TMPL_VAR NAME="value" -->" />
39 <!-- /TMPL_LOOP -->
40 <p><label>Username:<br />
41 <input type="text" name="userid" id="userid" class="input" value="<!-- TMPL_VAR NAME="userid" -->" size="20" tabindex="1" /></label>
42 </p>
43 <p><label>Password:<br />
44 <input type="password" name="password" id="password" class="input" value="" size="20" tabindex="2" /></label>
45 </p>
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 <!-- <p><label><input name="rememberme" type="checkbox" id="rememberme" value="forever" tabindex="3" />Remember me</label></p> -->
54
55 <p class="submit"><input id="submit" type="submit" value="Login &raquo;" tabindex="4" /></p>
56 </form>
57 <!--<ul> -->
58 <!--    <li><a href="/cgi-bin/koha/lostpassword.pl" title="Password Lost and Found">Lost your password?</a></li> -->
59 <!-- </ul> -->
60 <!-- /TMPL_IF -->
61
62 </div>
63 </div>
64 </div>
65
66 <script type="text/javascript">
67 // <![CDATA[
68     document.getElementById('userid').focus(); // auto focus on login input when document is loaded.
69 // ]]>
70 </script>
71
72 <!-- TMPL_INCLUDE name="intranet-bottom.inc" -->