Project

General

Profile

1
    <h3>Forgot your password?</h3>
2
    
3
  <table class="intro" cellpadding="3" cellspacing="0">
4
    <tr><td align="left"><span class="regtext">Enter the required information below to reset your 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>&nbsp;</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 orgDisplayHash = orgList %]
39
                  [% FOREACH pair IN orgDisplayHash.pairs %]
40
                    [% IF allParams.o == pair.key %]
41
                        <option value="[% pair.key %]" selected>[% pair.value %]</option>
42
                    [% ELSE %]
43
                        <option value="[% pair.key %]">[% pair.value %]</option>
44
                    [% END %]
45
                  [% END %]
46
                [% END %]
47
            </select>
48
          </td>
49
        </tr>
50
        <tr>
51
          <td>
52
          </td>
53
          <td align="right">
54
            <input name="action" type="submit" value="Reset password"/>
55
          </td>
56
        </tr>
57
      </table>
58
    </form>
59
    </td></tr></table>
(22-22/30)