Koha/koha-tmpl/intranet-tmpl/prog/en/modules/installer/auth.tt
Owen Leonard 34d52bc641
Bug 33915: Improve translation of title tags: Installer and onboarding
This patch updates installer and onboarding templates so that title
tags can be more easily translated.

To test, apply the patch and run through the installation and
onboarding process. At each stage confirm that the page title is
correct.

Signed-off-by: David Nind <david@davidnind.com>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2023-09-01 11:23:30 -03:00

78 lines
3.5 KiB
Text

[% USE raw %]
[% USE Koha %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>[% FILTER collapse %]
[% IF ( nopermission ) %]
[% t("Access denied") | html %]
[% END %]
[% IF ( timed_out ) %]
[% t("Session timed out") | html %]
[% END %]
[% IF ( different_ip ) %]
[% t("IP address change") | html %]
[% END %]
[% IF ( invalid_username_or_password ) %]
[% t("Invalid username or password") | html %]
[% END %]
[% IF ( loginprompt ) %]
[% t("Log in to the Koha web installer") | html %]
[% END %] &rsaquo;
[% t("Koha") | html %]
[% 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">
<div id="logo"><a href="#">Koha</a></div>
[% 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 ) %]
<h1>Welcome to the Koha [%- Koha.Version.release | html -%] web installer</h1>
<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' %]