custom fields edit popup, RT#34237
[freeside.git] / fs_selfservice / FS-SelfService / cgi / process_forgot_password.html
1 <HTML>
2   <HEAD>
3     <TITLE>Reset password</TITLE>
4     <%= $head %>
5   </HEAD>
6   <BODY BGCOLOR="<%= $body_bgcolor || '#eeeeee' %>">
7   <%= $body_header %>
8
9 <FONT SIZE=5>Reset password</FONT><BR><BR>
10 <FONT SIZE="+1" COLOR="#ff0000"><%= $error %></FONT>
11
12 <%= $selfurl =~ s/\?.*//; ''; %>
13 <FORM ACTION="<%= $selfurl %>" METHOD=POST>
14 <INPUT TYPE="hidden" NAME="action" VALUE="do_process_forgot_password">
15 <INPUT TYPE="hidden" NAME="session_id" VALUE="<%= $session_id %>">
16 <INPUT TYPE="hidden" NAME="agentnum" VALUE="<%= $agentnum %>">
17
18 <TABLE BGCOLOR="<%= $box_bgcolor || '#c0c0c0' %>" BORDER=0 CELLSPACING=2 CELLPADDING=0>
19
20 <%= if (!$error) {
21
22   $OUT .= <<'END';
23
24   <TR>
25     <TH ALIGN="right">New password: </TH>
26     <TD><INPUT TYPE="password" NAME="new_password" SIZE="18"></TD>
27   </TR>
28
29   <TR>
30     <TH ALIGN="right">Re-enter new password: </TH>
31     <TD><INPUT TYPE="password" NAME="new_password2" SIZE="18"></TD>
32   </TR>
33
34   <TR>
35     <TD COLSPAN=2 ALIGN="center"><INPUT TYPE="submit" VALUE="Change password"></TD>
36   </TR>
37 END
38
39   }
40 %>
41
42 </TABLE>
43 </FORM>
44
45 <%= $body_footer %>