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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-registration-confirmation.tt (-2 / +19 lines)
Lines 40-47 Link Here
40
                <div class="col-12 col-lg-9 order-md-1 maincontent">
40
                <div class="col-12 col-lg-9 order-md-1 maincontent">
41
            [% END %]
41
            [% END %]
42
42
43
                [% IF action == 'libraryhasverified' %]
43
                    <div id="registration-complete" class="maincontent">
44
                    <div id="registration-complete" class="maincontent">
44
                        <h1>Registration complete!</h1>
45
                        <h1>New patron registered!</h1>
46
47
                        <p>You have successfully registered a new Koha patron account for [% borrower.firstname | html %] [% borrower.surname | html %].</p>
48
                        <p>An email containing a password reset link has been sent to [% borrower.firstname | html %] [% borrower.surname | html %]'s email address: [% borrower.email | html %]:</p>
49
                        <p>Once [% borrower.firstname | html %] [% borrower.surname | html %] has reset their password they will be able to log into and use the Koha OPAC.</p>
50
                    </div>
51
                [% ELSIF action == 'librarytoverify' %]
52
                    <div>
53
                        <h1>Staff member to review registration</h1>
54
55
                        <p>Thank you for verifying your email address.</p>
56
57
                        <p>A library staff member will review your registration shortly, and if approved an email will be sent to <strong>[% email | html %]</strong> containing a link to a password reset page for you to set your Koha password.</p>
58
                    </div>
59
                [% ELSIF action == 'nolibraryverification' %]
60
                    <div id="registration-complete">
61
                        <h1>Registration Complete!</h1>
45
62
46
                        <p>You have successfully registered your new account.</p>
63
                        <p>You have successfully registered your new account.</p>
47
                        [% IF Koha.Preference('PatronSelfRegistrationPrefillForm') %]
64
                        [% IF Koha.Preference('PatronSelfRegistrationPrefillForm') %]
Lines 74-79 Link Here
74
91
75
                        <div id="PatronSelfRegistrationAdditionalInstructions">[% PatronSelfRegistrationAdditionalInstructions | $raw %]</div>
92
                        <div id="PatronSelfRegistrationAdditionalInstructions">[% PatronSelfRegistrationAdditionalInstructions | $raw %]</div>
76
                    </div> <!-- /#registration-complete -->
93
                    </div> <!-- /#registration-complete -->
94
                [% END %]
77
                </div> <!-- / .col-7/9 -->
95
                </div> <!-- / .col-7/9 -->
78
96
79
                <div class="col-12 col-lg-3 order-md-2">
97
                <div class="col-12 col-lg-3 order-md-2">
Lines 111-117 Link Here
111
                        </div>
129
                        </div>
112
                    [% END # /OpacNavRight %]
130
                    [% END # /OpacNavRight %]
113
                </div> <!-- / .col-lg-3 -->
131
                </div> <!-- / .col-lg-3 -->
114
115
        </div> <!-- /.row -->
132
        </div> <!-- /.row -->
116
    </div> <!-- /.container-fluid -->
133
    </div> <!-- /.container-fluid -->
117
</div> <!-- /.main -->
134
</div> <!-- /.main -->
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-registration-email-sent.tt (-1 / +24 lines)
Lines 31-38 Link Here
31
                [% ELSE %]
31
                [% ELSE %]
32
                    <div class="col order-first order-md-first order-lg-2">
32
                    <div class="col order-first order-md-first order-lg-2">
33
                [% END %]
33
                [% END %]
34
                [% IF (action == 'librarytoverify') %]
34
                    <div id="registration-confirmation-pending" class="maincontent">
35
                    <div id="registration-confirmation-pending" class="maincontent">
35
                        <div id="confirmation-pending" class="alert alert-info">
36
                        <div id="confirmation-pending" class="alert alert-info">
37
                            <h1>Thank you for submitting your library registration</h1>
38
39
                            <p>A library staff member will review your registration shortly, and if approved an email will be sent to <strong>[% email | html %]</strong> containing a link to a password reset page where you can set your Koha password.</p>
40
41
                            <p>Your account will not be activated until it has been approved by a library staff member.</p>
42
                        </div>
43
                    </div>
44
                [% ELSIF (action == 'patronandlibrarytoverify') %]
45
                    <div id="registration-confirmation-pending">
46
                        <div id="confirmation-pending" class="alert alert-info">
47
                            <h1>Please confirm your registration</h1>
48
49
                            <p>An email will be sent shortly to the email address <strong>[% email | html %]</strong>.</p>
50
51
                            <p>Please follow the link provided in the email to verify your inputted email address.</p>
52
53
                            <p>Once that is verified your registration will be reviewed by a library staff member.</p>
54
                        </div>
55
                    </div>
56
                [% ELSE %]
57
                    <div id="reistration-confirmation-pending">
58
                        <div id="confirmation-pending" class="alert alert-info">
36
                            <h1>Please confirm your registration</h1>
59
                            <h1>Please confirm your registration</h1>
37
60
38
                            <p>A confirmation email will be sent shortly to the email address <strong>[% email | html %]</strong>.</p>
61
                            <p>A confirmation email will be sent shortly to the email address <strong>[% email | html %]</strong>.</p>
Lines 40-45 Link Here
40
                            <p>Your account will not be activated until you follow the link provided in the confirmation email.</p>
63
                            <p>Your account will not be activated until you follow the link provided in the confirmation email.</p>
41
                        </div> <!-- /#confirmation-pending -->
64
                        </div> <!-- /#confirmation-pending -->
42
                    </div> <!-- /#registration-confirmation-pending -->
65
                    </div> <!-- /#registration-confirmation-pending -->
66
                [% END %]
43
                </div> <!-- /.col/10 -->
67
                </div> <!-- /.col/10 -->
44
            </div> <!-- /.row -->
68
            </div> <!-- /.row -->
45
        </div> <!-- /.container-fluid -->
69
        </div> <!-- /.container-fluid -->
46
- 

Return to bug 25090