Koha/koha-tmpl/intranet-tmpl/prog/en/modules/installer/auth.tt
Wainui Witika-Park 208b277d7e Bug 26703: errors, ill and installer folders
Swapped the order of the page titles to have the unique information
first, i.e. the name of the specific page displays first, and the name of the website (e.g. Koha) displays at the end.

To test:
1) Apply patch
2) Ensure each of the files in the errors, ill and installer folders are swapped around to display the most unique information first, and the website name is at the end
3) Ensure the pages displayed on the Staff Client that correspond to
these files also display the changes

Sponsored-by: Catalyst IT
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

Signed-off-by: Henry Bolshaw <bolshawh@parliament.uk>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
2021-04-21 11:16:34 +02:00

65 lines
3.3 KiB
Text

[% USE Koha %]
[% INCLUDE 'doc-head-open.inc' %]
<title>
[% IF ( nopermission ) %]Access denied[% END %]
[% IF ( timed_out ) %]Session timed out[% END %]
[% IF ( different_ip ) %]IP address change[% END %]
[% IF ( invalid_username_or_password ) %]Invalid username or password[% END %]
[% IF ( loginprompt ) %]Log in to the Koha web installer[% END %] &rsaquo; Koha
</title>
[% INCLUDE 'installer-doc-head-close.inc' %]
</head>
<body id="installer" class="installer">
<div class="container-fluid">
<div class="row">
<div id="installer-login" class="installer-main col-sm-6 col-sm-offset-3 col-md-6 col-md-offset-3">
<h1 id="logo"><a href="#">Koha</a></h1>
[% IF ( nopermission ) %]
<div id="login_error" class="alert alert-danger"><strong>Error: </strong>Unauthorized user <a href="/cgi-bin/koha/mainpage.pl?logout.x=1">click to log out</a></div>
[% END %]
[% IF ( timed_out ) %]
<div id="login_error" class="alert alert-danger"><strong>Error: </strong>Session timed out, please log in again</div>
[% END %]
[% IF ( different_ip ) %]
<div id="login_error" class="alert alert-danger"><strong>Error: </strong>IP address has changed, please log in again </div>
[% END %]
[% IF ( invalid_username_or_password ) %]
<div id="login_error" class="alert alert-danger"><strong>Error: </strong>Invalid username or password</div>
[% END %]
[% IF ( loginprompt ) %]
<h2>Welcome to the Koha [%- Koha.Version.release | html -%] web installer</h2>
<p>Before we begin, please verify you have the correct credentials to continue. Please log in with the username and password given to you by your systems administrator and located in your <code>koha-conf.xml</code> configuration file.</p>
<form action="[% url | html %]" method="post" id="mainform">
[% FOREACH INPUT IN INPUTS %]
<input type="hidden" name="[% INPUT.name | html %]" value="[% INPUT.value | html %]" />
[% END %]
<fieldset>
<legend>Please enter your username and password</legend>
<div class="form-group">
<label>Username:</label>
<input type="text" class="form-control" name="userid" id="userid" value="[% userid | html %]" size="20" tabindex="1" />
</div>
<div class="form-group">
<label>Password:</label>
<input type="password" class="form-control" name="password" id="password" value="" size="20" tabindex="2" />
</div>
<input id="submit" type="submit" class="btn btn-primary" value="Log in" tabindex="3" />
</fieldset>
</form>
[% END %]
</div> <!-- / #installer-login -->
</div> <!-- / .row -->
</div><!-- / .container-fluid -->
[% INCLUDE 'installer-intranet-bottom.inc' %]