Koha/koha-tmpl/intranet-tmpl/prog/en/modules/installer/auth.tt
Owen Leonard 9ceb745fb2 Bug 20658: Move template JavaScript to the footer: Installer and onboarding
This patch updates the installer and onboarding templates so that
JavaScript is included in the footer instead of the header. A new
include file is added, installer-intranet-bottom.inc, so that only
required JS is being loaded.

Some markup changes are included to improve validity.

To test, apply the patch and start with a blank Koha database. Run
through the installer and onboarding processes and confirm that there
are no problems. Check especially JS-related interactions like
datepickers and fields which are validated via JS, like the password
inputs.

NOTE: The qa tool will flag this patch for not using the Asset plugin,
but it doesn't work correctly for installer files.

Signed-off-by: Claire Gravely <claire.gravely@bsz-bw.de>

Signed-off-by: Josef Moravec <josef.moravec@gmail.com>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
2019-03-15 19:44:45 +00:00

65 lines
3.3 KiB
Text

[% USE Koha %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Koha &rsaquo;
[% 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 %]
</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' %]