Project

General

Profile

1

    
2
    <h3>Forgot Your UserName?</h3>
3
    
4
    <table class="intro" cellpadding="3" cellspacing="0">   
5
       <tr><td align="left">
6
       <span class="regtext">
7
       Please enter the E-mail address you provided when you registered. You will receive an E-mail with your account name (uid). 
8
       Please check your incoming and junk E-mail folders for this E-mail.</td></tr>
9

    
10
       <!-- <tr><td align="left"><span class="label">Required fields are denoted by an asterisk (*).</td></tr>-->
11
       
12
    </table>
13
    <p>&nbsp;</p>
14
    
15
    <p class="label text-error">[% errorMessage %]<p>
16
    <p>
17
    <script type="text/javascript" language="JavaScript1.2">
18
    
19
    <!--
20
      document.loginForm.givenName.focus();
21
      document.loginForm.givenName.select();
22

    
23
      if(window.document.captureEvents != null)
24
      {
25
        window.document.captureEvents(Event.KEYPRESS);
26
        window.document.onKeyPress = doSubmit;
27
      }
28

    
29
      function doSubmit(event)
30
      {
31
        var key;
32
        if(document.all) // IE
33
          key = String.fromCharCode(window.events.keyCode);
34
        else
35
          key = String.fromCharCode(event.which);
36

    
37
        if(key == "\r" || key == "\n")
38
          document.loginForm.submit();
39
      }
40
    // -->
41
    </script>
42

    
43
    <form name="loginForm" action="[% cgiurl %]" method="post">
44
      <input type="hidden" name="stage" value="searchnamesbyemail"/>
45
      <input type="hidden" name="cfg" value="[% cfg %]"/>
46
      <table hspace="20" border="0">
47
        
48
         
49
        
50
        <tr>
51
          <td align="right" class="label">
52
            E-mail:
53
          </td>
54
          <td align="right">
55
            <input name="mail" type="[% fieldType %]" 
56
                   value="[% allParams.mail %]"/>
57
          </td>
58
        </tr>
59
        
60
        <tr>
61
          <td>
62
          </td>
63
          <td align="left">
64
               <input name="action" type="submit" value="Submit"/>
65
          </td>
66
        </tr>
67
      </table>
68
    </form>
69

    
(14-14/30)