]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/opac/password_reset.tt2
TPac: load config.tt2 from header.tt2
[working/Evergreen.git] / Open-ILS / src / templates / opac / password_reset.tt2
1 [%  PROCESS "opac/parts/header.tt2";
2     WRAPPER "opac/parts/base.tt2";
3     INCLUDE "opac/parts/topnav.tt2";
4     ctx.page_title = l('Library system password reset request form');
5 %]
6 <div id="search-wrapper">
7     [% INCLUDE "opac/parts/printnav.tt2" %]
8     [% INCLUDE "opac/parts/searchbar.tt2" %]
9 </div>
10
11 [%  
12     uuid = ctx.page_args.0;
13     msg_map = {
14         SUCCESS => l('Password has been reset'),
15         NO_MATCH => l('Passwords did not match. Please try again'),
16         NOT_ACTIVE => l('This was not an active password reset request. Your password has not been reset.'),
17         NOT_STRONG => l('The password you chose was not considered complex enough to protect your account. Your password has not been reset.'),
18         TWO_PASSWORDS => l('Please enter and repeat your new password.'),
19         REQUEST_SUCCESS => l('Your user name or barcode has been submitted for a password reset. ' _ 
20             'If a matching account with an email address is found, you will soon receive an email at that address with further instructions for resetting your password.')
21     }
22 %]
23 <div id="content-wrapper">
24     <div id="main-content">
25         <br/>
26         <p class='[% ctx.pwreset.style %]'>[% stat = ctx.pwreset.status; msg_map.$stat %]</p>
27         [% IF uuid %]
28             [% IF stat == 'SUCCESS' %]
29                 <p><a href='[% mkurl(ctx.opac_root _ '/myopac/main', {}, 1) %]'>[% l('Log in to My Account') %]</a>
30             [% ELSE %]
31             <form method="post">
32                 <input type='hidden' name='uuid' value='[% uuid | html %]'/>
33                 <table>
34                     <tr>
35                         <td><label for="pwd1">[% l('New password:') %]</label></td>
36                         <td><input type="password" name="pwd1"/></td>
37                     </tr>
38                     <tr>
39                         <td><label for="pwd2">[% l('Re-enter new password:') %]</label></td>
40                         <td><input type="password" name="pwd2"/></td>
41                     </tr>
42                     <tr>
43                         <td>
44                             <button name="submit" id="submitButton" type="submit">[% l('Submit') %]</button>
45                         </td>
46                     </tr>
47                 </table>
48             </form>
49             [% END %]
50         [% ELSIF !ctx.pwreset.status %]
51         <h2>[% l('Please enter your user name or barcode to identify your library account and request a password reset') %]</h2>
52         <form method="post">
53             <table>
54                 <tr>
55                     <td><label for="barcode">[% l('Barcode:') %] </label></td>
56                     <td><input type="text" id="barcode" name="barcode"/></td>
57                 </tr>
58                 <tr>
59                     <td><label for="username">[% l('User name:') %] </label></td>
60                     <td><input type="text" id="username" name="username"/></td>
61                 </tr>
62             </table>
63             [% IF ctx.get_org_setting(ctx.physical_loc || ctx.aou_tree.id, 'circ.password_reset_request_requires_matching_email') %]
64             <label for="email">[% l('Email address associated with the account:') %] </label><input type="text" name="email"/></br>
65             [% END %]
66             <button name="submit" id="submitButton" type="submit">[% l('Submit') %]</button>
67         </form>
68         [% END %]
69     </div>
70 </div>
71 [% END %]
72