diff options
| author | Jonathan Prykop <jonathan@freeside.biz> | 2015-12-07 17:46:45 -0600 |
|---|---|---|
| committer | Jonathan Prykop <jonathan@freeside.biz> | 2015-12-07 17:46:45 -0600 |
| commit | 4b147e668c23fd3011885ed94d84f4f3bb27c71f (patch) | |
| tree | 533726c41c3f184e7cd4b24c5c6b7112df3f215c /fs_selfservice/FS-SelfService/cgi/process_forgot_password.html | |
| parent | 7c08f01e1a05fe4bab903bd44277b5c3784aebc5 (diff) | |
RT#29354: Password Security in Email [customer fields, images, js files]
Diffstat (limited to 'fs_selfservice/FS-SelfService/cgi/process_forgot_password.html')
| -rw-r--r-- | fs_selfservice/FS-SelfService/cgi/process_forgot_password.html | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/fs_selfservice/FS-SelfService/cgi/process_forgot_password.html b/fs_selfservice/FS-SelfService/cgi/process_forgot_password.html index ec672c8d5..da6fc8d29 100644 --- a/fs_selfservice/FS-SelfService/cgi/process_forgot_password.html +++ b/fs_selfservice/FS-SelfService/cgi/process_forgot_password.html @@ -15,6 +15,7 @@ <INPUT TYPE="hidden" NAME="session_id" VALUE="<%= $session_id %>"> <INPUT TYPE="hidden" NAME="agentnum" VALUE="<%= $agentnum %>"> +<DIV STYLE="background: <%= $box_bgcolor || '#c0c0c0' %>"> <TABLE BGCOLOR="<%= $box_bgcolor || '#c0c0c0' %>" BORDER=0 CELLSPACING=2 CELLPADDING=0> <%= if (!$error) { @@ -23,16 +24,27 @@ <TR> <TH ALIGN="right">New password: </TH> - <TD><INPUT TYPE="password" NAME="new_password" SIZE="18"></TD> + <TD> + <INPUT ID="new_password" TYPE="password" NAME="new_password" SIZE="18"> + </TD> + <TD> + <SPAN ID="new_password_result"></SPAN> + <SCRIPT SRC="send_xmlhttp.js"></SCRIPT> + <SCRIPT SRC="add_password_validation.js"></SCRIPT> + <SCRIPT> + add_password_validation('new_password',true); + </SCRIPT> + </TD> </TR> <TR> <TH ALIGN="right">Re-enter new password: </TH> <TD><INPUT TYPE="password" NAME="new_password2" SIZE="18"></TD> + <TD></TD> </TR> - <TR> - <TD COLSPAN=2 ALIGN="center"><INPUT TYPE="submit" VALUE="Change password"></TD> + <TD COLSPAN="2" ALIGN="center"><INPUT TYPE="submit" VALUE="Change password"></TD> + <TD></TD> </TR> END @@ -40,6 +52,7 @@ END %> </TABLE> +</DIV> </FORM> <%= $body_footer %> |
