1
|
<h2>Forgot your KNB Password?</h2>
|
2
|
<p>Fill out the form below to reset your KNB password.
|
3
|
You will need to know your username. We will change the password
|
4
|
for you to a new random password, and email it to you at the
|
5
|
address registered for the account.
|
6
|
</p>
|
7
|
<p>Required fields are shown in red.</p>
|
8
|
<p class="emphasis">[% errorMessage %]<p>
|
9
|
<p>
|
10
|
<form name="passwdForm" action="@cgiurl@" method="post">
|
11
|
<input type="hidden" name="stage" value="[% stage %]"/>
|
12
|
<input type="hidden" name="cfg" value="[% cfg %]"/>
|
13
|
<table border="0">
|
14
|
<tr>
|
15
|
<td align="left" class="required">
|
16
|
Username:
|
17
|
</td>
|
18
|
<td align="right">
|
19
|
<input name="uid" type="text"
|
20
|
[% IF allParams.uid %]
|
21
|
value="[% allParams.uid %]"
|
22
|
[% END %]/>
|
23
|
</td>
|
24
|
</tr>
|
25
|
<tr>
|
26
|
<td align="left" class="required">
|
27
|
Organization:
|
28
|
</td>
|
29
|
<td align="right">
|
30
|
<select name="o">
|
31
|
[% FOREACH org = orgList %]
|
32
|
[% IF allParams.o == org %]
|
33
|
<option value="[% org %]" selected>[% org %]</option>
|
34
|
[% ELSE %]
|
35
|
<option value="[% org %]">[% org %]</option>
|
36
|
[% END %]
|
37
|
[% END %]
|
38
|
</select>
|
39
|
</td>
|
40
|
</tr>
|
41
|
<tr>
|
42
|
<td>
|
43
|
</td>
|
44
|
<td align="right">
|
45
|
<input name="action" type="submit" value="Reset password"/>
|
46
|
</td>
|
47
|
</tr>
|
48
|
</table>
|
49
|
</form>
|
50
|
</p>
|