diff options
| author | Ivan Kohler <ivan@freeside.biz> | 2013-12-30 01:43:30 -0800 |
|---|---|---|
| committer | Ivan Kohler <ivan@freeside.biz> | 2013-12-30 01:43:30 -0800 |
| commit | c9450c02f7ac2f904a6ffabb07b6b2d5bca1fd4a (patch) | |
| tree | 00af6b8101403aeb051b5f6db1f82a7baf982e6c /fs_selfservice/FS-SelfService/cgi/forgot_password.html | |
| parent | 6033d0297f7e50318b76f83c5b61f05110e58e33 (diff) | |
self-service access for contacts, RT#25533
Diffstat (limited to 'fs_selfservice/FS-SelfService/cgi/forgot_password.html')
| -rw-r--r-- | fs_selfservice/FS-SelfService/cgi/forgot_password.html | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/fs_selfservice/FS-SelfService/cgi/forgot_password.html b/fs_selfservice/FS-SelfService/cgi/forgot_password.html new file mode 100644 index 000000000..e14034c7d --- /dev/null +++ b/fs_selfservice/FS-SelfService/cgi/forgot_password.html @@ -0,0 +1,53 @@ +<HTML> + <HEAD> + <TITLE>Forgot password</TITLE> + <%= $head %> + </HEAD> + <BODY BGCOLOR="<%= $body_bgcolor || '#eeeeee' %>"> + <%= $body_header %> + +<FONT SIZE=5>Forgot password</FONT><BR><BR> +<FONT SIZE="+1" COLOR="#ff0000"><%= $error %></FONT> + +<FORM ACTION="<%= $self_url %>" METHOD=POST> +<INPUT TYPE="hidden" NAME="action" VALUE="do_forgot_password"> +<INPUT TYPE="hidden" NAME="agentnum" VALUE="<%= $agentnum %>"> + +Please enter your email address. A password reset email will be sent to that address. + +<TABLE BGCOLOR="<%= $box_bgcolor || '#c0c0c0' %>" BORDER=0 CELLSPACING=2 CELLPADDING=0> + +<TR> + <TH ALIGN="right">Email address </TH> + <TD> + <INPUT TYPE="text" NAME="email" VALUE="<%= $username %>"><%= $single_domain ? '@'.$single_domain : '' %> + </TD> +</TR> + +<%= +if ( $single_domain ) { + + $OUT .= qq(<INPUT TYPE="hidden" NAME="domain" VALUE="$single_domain">); + +} else { + + $OUT .= qq( + <TR> + <TH ALIGN="right">Domain </TH> + <TD> + <INPUT TYPE="text" NAME="domain" VALUE="$domain"> + </TD> + </TR> + ); + +} + +%> + +<TR> + <TD COLSPAN=2 ALIGN="center"><INPUT TYPE="submit" VALUE="Send reset email"></TD> +</TR> +</TABLE> +</FORM> + +<%= $body_footer %> |
