Lines 47-53
Link Here
|
47 |
<h3>Forgotten password recovery</h3> |
47 |
<h3>Forgotten password recovery</h3> |
48 |
[% IF (hasError) %] |
48 |
[% IF (hasError) %] |
49 |
<div class="alert alert-warning"> |
49 |
<div class="alert alert-warning"> |
50 |
<h3>Oops!</h3> |
50 |
<h3>Error</h3> |
51 |
<p> |
51 |
<p> |
52 |
[% IF (sendmailError) %] |
52 |
[% IF (sendmailError) %] |
53 |
An error has occurred while sending you the password recovery link. |
53 |
An error has occurred while sending you the password recovery link. |
Lines 57-65
Link Here
|
57 |
[% ELSIF (errAlreadyStartRecovery) %] |
57 |
[% ELSIF (errAlreadyStartRecovery) %] |
58 |
The process of password recovery has already been started for this account ("<strong>[% username %]</strong>") |
58 |
The process of password recovery has already been started for this account ("<strong>[% username %]</strong>") |
59 |
<br/>You should have received an email with a link to reset your password. |
59 |
<br/>You should have received an email with a link to reset your password. |
60 |
<br/>If you did not receive this email, you can <a href="/cgi-bin/koha/opac-password-recovery.pl?resendEmail=true&email=[% email %]&username=[% username %]">request a new password recovery link.</a> |
60 |
<br/>If you did not receive this email, you can request a new one: <a href="/cgi-bin/koha/opac-password-recovery.pl?resendEmail=true&email=[% email %]&username=[% username %]">Get new password recovery link</a> |
61 |
[% ELSIF (errPassNotMatch) %] |
61 |
[% ELSIF (errPassNotMatch) %] |
62 |
Oops! The passwords must match. |
62 |
The passwords do not match. |
63 |
[% ELSIF (errPassTooShort) %] |
63 |
[% ELSIF (errPassTooShort) %] |
64 |
Your chosen password is too short. |
64 |
Your chosen password is too short. |
65 |
<br/>The password must contain at least [% minPassLength %] characters. |
65 |
<br/>The password must contain at least [% minPassLength %] characters. |
Lines 116-122
Link Here
|
116 |
[% ELSIF (password_reset_done) %] |
116 |
[% ELSIF (password_reset_done) %] |
117 |
<div class="alert alert-success"> |
117 |
<div class="alert alert-success"> |
118 |
<p>The password has been changed for user "[% username %]".</p> |
118 |
<p>The password has been changed for user "[% username %]".</p> |
119 |
Click <a href="/cgi-bin/koha/opac-user.pl">here</a> to login. |
119 |
<a href="/cgi-bin/koha/opac-user.pl">Click here to login.</a> |
120 |
</div> |
120 |
</div> |
121 |
[% END %] |
121 |
[% END %] |
122 |
</div><!-- / #password-recovery --> |
122 |
</div><!-- / #password-recovery --> |
123 |
- |
|
|