improvements to the language of the installer
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / installer / auth.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title><!-- TMPL_IF NAME="nopermission" -->Koha &rsaquo; Error: Access Denied<!-- /TMPL_IF -->
3 <!-- TMPL_IF NAME="timed_out" -->Koha &rsaquo; Error: Session Timed Out --<!-- /TMPL_IF -->
4 <!-- TMPL_IF NAME="different_ip" -->Koha &rsaquo; Error: IP Address Change -- <!-- /TMPL_IF -->
5 <!-- TMPL_IF NAME="invalid_username_or_password" -->Koha &rsaquo; Error Invalid Username or Password -- <!-- /TMPL_IF -->
6 <!-- TMPL_IF NAME="loginprompt" -->Koha &rsaquo; Welcome to the Koha Web Installer<!-- /TMPL_IF --></title>
7
8 <!-- TMPL_INCLUDE NAME="installer-doc-head-close.inc" -->
9 <div>
10 <h1 id="logo"><img alt="Koha" src="/intranet-tmpl/prog/en/images/koha.org-logo.gif" /></h1>
11 <!-- TMPL_IF NAME="nopermission" -->
12 <!-- This is what is displayed if user doesn't have permission --><h3>Login Error</h3>
13 <p>Sorry, Koha doesn't think you have permission for this page.</p>
14 <!-- /TMPL_IF -->
15
16 <!-- TMPL_IF NAME="timed_out" -->
17 <!-- This is what is displayed if login has timed out -->
18 <h3>Login Error</h3><p>Sorry, your session has timed out. Please login again.</p>
19 <!-- /TMPL_IF -->
20
21 <!-- TMPL_IF NAME="different_ip" -->
22 <!-- This is what is displayed if user's IP has changed -->
23 <h3>Login Error</h3><p>You are accessing Koha from a different IP address! Please login again.</p>
24 <!-- /TMPL_IF -->
25
26 <!-- TMPL_IF NAME="invalid_username_or_password" -->
27 <!-- This is what is displayed if the username or password doesn't work -->
28 <h3>Login Error</h3><p>You entered an incorrect username or password. Please try again.</p>
29 <!-- /TMPL_IF -->
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 <h3>Welcome to the Koha Web Installer</h3>
38 <p>Before we begin, please verify you have the correct credentials to continue. Please log in
39 with the username and password given to you by your systems administrator and located in your
40 <code>koha.xml</code> configuration file.</p>
41 <table>
42         <caption>Please enter your username and password:</caption>
43     <tr><th scope="row"><label for="userid">Username:</label></th><td><input name="userid" id="userid" /></td></tr>
44     <tr><th scope="row"><label for="password">Password:</label></th><td><input type="password" name="password" id="password" /></td></tr>
45     </table>
46 <p><input type="submit" value="Submit" /></p>
47 </form>
48
49 <!-- /TMPL_IF -->
50
51 <!-- TMPL_INCLUDE name="intranet-bottom.inc" -->