minor fixes (to get less warning during translation)
[koha.git] / koha-tmpl / opac-tmpl / css / en / opac-auth.tmpl
1 <!-- TMPL_INCLUDE NAME="opac-top.inc" -->
2 <div id="mainbloc">
3 <!-- TMPL_IF NAME="nopermission" -->
4 <!-- This is what is displayed if user doesnt have permission -->
5 <h2>Sorry, KOHA doesnt think you have permission for this page.<h2>
6 <!-- /TMPL_IF -->
7
8 <!-- TMPL_IF NAME="timed_out" -->
9 <!-- This is what is displayed if login has timed out -->
10 <h2>Sorry, your session has timed out, please login again.<h2>
11 <!-- /TMPL_IF -->
12
13 <!-- TMPL_IF NAME="different_ip" -->
14 <!-- This is what is displayed if user doesnt have permission -->
15 <h2>You are accessing koha from a different ip address! please login again.<h2>
16 <!-- /TMPL_IF -->
17
18 <!-- TMPL_IF NAME="invalid_username_or_password" -->
19 <!-- This is what is displayed if user doesnt have permission -->
20 <h2>You entered an incorrect username or password, please try again.<h2>
21 <!-- /TMPL_IF -->
22
23 <!-- TMPL_IF NAME="loginprompt" -->
24 <!-- login prompt time-->
25
26 <form action="<!-- TMPL_VAR NAME="url" -->" method="post">
27         <h1>Koha Login</h1>
28         <p><label>Cardnumber</label><input name="userid" /></p>
29         <p><label>Password</label><input type="password" name="password" /></p>
30         <!-- TMPL_LOOP NAME="INPUTS" -->
31                 <input type="hidden" name='<!-- TMPL_VAR NAME="name" -->' value='<!-- TMPL_VAR NAME="value" -->' />
32         <!-- /TMPL_LOOP -->
33         <input type="submit" value="login" class="button" />
34 </form>
35
36 <!-- /TMPL_IF -->
37 </div>
38 <!-- TMPL_INCLUDE NAME="opac-bottom.inc" -->