source: trunk/LATMOS-Accounts-Web/root/html/pwrst/changepw.tt

Last change on this file was 2349, checked in by nanardon, 4 years ago

Add form to reset password using mail feature

File size: 730 bytes
Line 
1<h2>[% l('Set your password:') | html %]</h2>
2
3[% IF data.err %]
4<p class=error>[% data.err | html %]</p>
5[% END %]
6
7<form method=POST action='[% c.uri_for('/pwrst', ReqId) %]'>
8<input type=hidden name=id value="[% ReqId %]">
9<label for=iuser>[% l('Your Login') | html %]</label>:
10<input id=iuser type=text name=user value="[% c.req.param('user') | html %]"><br>
11
12<label for=ipassword>[% l('Your new password') | html %]</label>:
13<input id=ipassword type=password name=password value="[% c.req.param('password') | html %]"><br>
14<label for=icpassword>[% l('Confirm your password') | html %]</label>:
15<input id=icpassword type=password name=cpassword value="[% c.req.param('cpassword') | html %]"><br>
16
17<input type=submit>
18</form>
19
Note: See TracBrowser for help on using the repository browser.