3d8c0583ed8a53300bb8cbede3a76f7fe878b44a
[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 <FORM ACTION="<%= $self_url %>" METHOD=POST>
13 <INPUT TYPE="hidden" NAME="action" VALUE="do_process_forgot_password">
14 <INPUT TYPE="hidden" NAME="session_id" VALUE="<%= $session_id %>">
15 <INPUT TYPE="hidden" NAME="agentnum" VALUE="<%= $agentnum %>">
16
17 <TABLE BGCOLOR="<%= $box_bgcolor || '#c0c0c0' %>" BORDER=0 CELLSPACING=2 CELLPADDING=0>
18
19 <%= if (!$error) {
20
21   $OUT .= <<'END';
22
23   <TR>
24     <TH ALIGN="right">New password: </TH>
25     <TD><INPUT TYPE="password" NAME="new_password" SIZE="18"></TD>
26   </TR>
27
28   <TR>
29     <TH ALIGN="right">Re-enter new password: </TH>
30     <TD><INPUT TYPE="password" NAME="new_password2" SIZE="18"></TD>
31   </TR>
32
33   <TR>
34     <TD COLSPAN=2 ALIGN="center"><INPUT TYPE="submit" VALUE="Change password"></TD>
35   </TR>
36 END
37
38   }
39 %>
40
41 </TABLE>
42 </FORM>
43
44 <%= $body_footer %>