1
|
|
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
|
<form name="passwdForm" action="@cgiurl@" method="post">
|
16
|
<input type="hidden" name="stage" value="[% stage %]"/>
|
17
|
<input type="hidden" name="cfg" value="[% cfg %]"/>
|
18
|
|
19
|
<p> </p>
|
20
|
<table border="0">
|
21
|
<tr>
|
22
|
<td align="left" class="label">
|
23
|
*Username:
|
24
|
</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
|
<td align="left" class="label">
|
34
|
*Organization:
|
35
|
</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
|
</td></tr></table>
|