View | Details | Raw Unified | Return to bug 7867
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt (-2 / +2 lines)
Lines 3-9 Link Here
3
    [% IF ( nopermission ) %]Access denied[% END %]
3
    [% IF ( nopermission ) %]Access denied[% END %]
4
    [% IF ( timed_out ) %]Session timed out[% END %]
4
    [% IF ( timed_out ) %]Session timed out[% END %]
5
    [% IF ( different_ip ) %]IP address change[% END %]
5
    [% IF ( different_ip ) %]IP address change[% END %]
6
    [% IF ( invalid_username_or_password ) %]Invalid username or password[% END %]
6
    [% IF ( invalid_username_or_password ) %]Invalid login or password[% END %]
7
    [% IF ( loginprompt ) %]Log in to Koha[% END %]
7
    [% IF ( loginprompt ) %]Log in to Koha[% END %]
8
</title>
8
</title>
9
[% INCLUDE 'doc-head-close.inc' %]
9
[% INCLUDE 'doc-head-close.inc' %]
Lines 39-45 Link Here
39
[% END %]
39
[% END %]
40
40
41
[% IF ( invalid_username_or_password ) %]
41
[% IF ( invalid_username_or_password ) %]
42
<div id="login_error"><strong>Error: </strong>Invalid username or password</div>
42
<div id="login_error"><strong>Error: </strong>Invalid login or password</div>
43
[% END %]
43
[% END %]
44
44
45
<!-- login prompt time-->
45
<!-- login prompt time-->
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt (-1 / +1 lines)
Lines 53-59 Link Here
53
                            [% IF ( invalid_username_or_password ) %]
53
                            [% IF ( invalid_username_or_password ) %]
54
                                <!-- This is what is displayed if user doesnt have permission -->
54
                                <!-- This is what is displayed if user doesnt have permission -->
55
                                <div class="alert alert-info">
55
                                <div class="alert alert-info">
56
                                    <p>You entered an incorrect username or password. Please try again! And remember, usernames and passwords are case sensitive.</p>
56
                                    <p>You entered an incorrect login or password. Please try again! And remember, logins and passwords are case sensitive.</p>
57
                                </div>
57
                                </div>
58
                            [% END %]
58
                            [% END %]
59
59
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-auth.tt (-1 / +1 lines)
Lines 43-49 Link Here
43
43
44
[% IF ( invalid_username_or_password ) %]
44
[% IF ( invalid_username_or_password ) %]
45
<!-- This is what is displayed if user doesnt have permission -->
45
<!-- This is what is displayed if user doesnt have permission -->
46
<p>You entered an incorrect username or password. Please try again! And remember, usernames and passwords are case sensitive.</p>
46
<p>You entered an incorrect login or password. Please try again! And remember, usernames and passwords are case sensitive.</p>
47
[% END %]
47
[% END %]
48
48
49
[% IF ( casAuthentication ) %]
49
[% IF ( casAuthentication ) %]
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/sco/sco-main.tt (-3 / +2 lines)
Lines 312-319 Sorry, this self-checkout station has lost authentication. Please contact the a Link Here
312
       [% IF ( authbylogin ) %]
312
       [% IF ( authbylogin ) %]
313
	<fieldset class="checkout">
313
	<fieldset class="checkout">
314
       <legend>Please login with your username and password</legend>
314
       <legend>Please login with your username and password</legend>
315
       <label for="patronlogin">Username:</label>
315
       <label for="patronlogin">Login:</label>
316
	<input type="text" id="patronlogin" class="focus" size="20" name="patronlogin" />
316
        <input type="text" id="patronlogin" class="focus" size="20" name="patronlogin" title="Please enter your username or card number." />
317
       <label for="patronpw">Password:</label>
317
       <label for="patronpw">Password:</label>
318
	<input type="password" id="patronpw" size="20" name="patronpw" />
318
	<input type="password" id="patronpw" size="20" name="patronpw" />
319
       [% ELSE %]
319
       [% ELSE %]
320
- 

Return to bug 7867