1 |
2411
|
sgarg
|
|
2 |
|
|
<table class="intro" cellpadding="3" cellspacing="0">
|
3 |
|
|
<tr><td align="left"><span class="emphasis">Forgot your KNB password?</span></td></tr>
|
4 |
|
|
<tr><td align="left"><span class="regtext">Enter the required information below to reset your KNB password.
|
5 |
|
|
You will need to know your username and organization. We will change the password
|
6 |
|
|
for you to a new random password, and send it to you at the e-mail
|
7 |
|
|
address registered for the account. Required fields are denoted by an asterisk (*).</td></tr>
|
8 |
|
|
|
9 |
|
|
|
10 |
|
|
<tr><td align="left"><span class="label">[% errorMessage %]</td></tr>
|
11 |
|
|
</table>
|
12 |
|
|
|
13 |
|
|
|
14 |
|
|
<table class="intro" cellpadding="3" cellspacing="0"><tr><td>
|
15 |
2342
|
sgarg
|
<form name="passwdForm" action="@cgiurl@" method="post">
|
16 |
|
|
<input type="hidden" name="stage" value="[% stage %]"/>
|
17 |
|
|
<input type="hidden" name="cfg" value="[% cfg %]"/>
|
18 |
2411
|
sgarg
|
|
19 |
|
|
<p> </p>
|
20 |
2342
|
sgarg
|
<table border="0">
|
21 |
|
|
<tr>
|
22 |
2411
|
sgarg
|
<td align="left" class="label">
|
23 |
|
|
*Username:
|
24 |
2342
|
sgarg
|
</td>
|
25 |
|
|
<td align="right">
|
26 |
|
|
<input name="uid" type="text"
|
27 |
|
|
[% IF allParams.uid %]
|
28 |
|
|
value="[% allParams.uid %]"
|
29 |
|
|
[% END %]/>
|
30 |
|
|
</td>
|
31 |
|
|
</tr>
|
32 |
|
|
<tr>
|
33 |
2411
|
sgarg
|
<td align="left" class="label">
|
34 |
|
|
*Organization:
|
35 |
2342
|
sgarg
|
</td>
|
36 |
|
|
<td align="right">
|
37 |
|
|
<select name="o">
|
38 |
|
|
[% FOREACH org = orgList %]
|
39 |
|
|
[% IF allParams.o == org %]
|
40 |
|
|
<option value="[% org %]" selected>[% org %]</option>
|
41 |
|
|
[% ELSE %]
|
42 |
|
|
<option value="[% org %]">[% org %]</option>
|
43 |
|
|
[% END %]
|
44 |
|
|
[% END %]
|
45 |
|
|
</select>
|
46 |
|
|
</td>
|
47 |
|
|
</tr>
|
48 |
|
|
<tr>
|
49 |
|
|
<td>
|
50 |
|
|
</td>
|
51 |
|
|
<td align="right">
|
52 |
|
|
<input name="action" type="submit" value="Reset password"/>
|
53 |
|
|
</td>
|
54 |
|
|
</tr>
|
55 |
|
|
</table>
|
56 |
|
|
</form>
|
57 |
2411
|
sgarg
|
</td></tr></table>
|