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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-password-recovery.tt (-2 / +2 lines)
Lines 47-56 Link Here
47
                    <h3>Password recovery</h3>
47
                    <h3>Password recovery</h3>
48
            [% IF (hasError) %]
48
            [% IF (hasError) %]
49
                <div class="alert alert-warning">
49
                <div class="alert alert-warning">
50
                    <h3>An error occured</h3>
50
                    <h3>An error occurred</h3>
51
                    <p>
51
                    <p>
52
                    [% IF (sendmailError) %]
52
                    [% IF (sendmailError) %]
53
                        An error has occured while sending you the password recovery link.
53
                        An error has occurred while sending you the password recovery link.
54
                        <br/>Please try again later.
54
                        <br/>Please try again later.
55
                    [% ELSIF (errNoBorrowerFound) %]
55
                    [% ELSIF (errNoBorrowerFound) %]
56
                        No account was found with the provided information.
56
                        No account was found with the provided information.
(-)a/opac/opac-password-recovery.pl (-2 / +1 lines)
Lines 114-120 if ( $query->param('sendEmail') || $query->param('resendEmail') ) { Link Here
114
            email     => $email
114
            email     => $email
115
        );
115
        );
116
    }
116
    }
117
    else {# if it doesnt work....
117
    else {# if it doesn't work....
118
        $template->param(
118
        $template->param(
119
            password_recovery => 1,
119
            password_recovery => 1,
120
            sendmailError     => 1
120
            sendmailError     => 1
121
- 

Return to bug 8753