Index: ssts-web/src/main/webapp/personalSetting/modifyPWDByExt.js =================================================================== diff -u -r40911 -r40917 --- ssts-web/src/main/webapp/personalSetting/modifyPWDByExt.js (.../modifyPWDByExt.js) (revision 40911) +++ ssts-web/src/main/webapp/personalSetting/modifyPWDByExt.js (.../modifyPWDByExt.js) (revision 40917) @@ -6,6 +6,7 @@ // Encrypt with the public key... sendAuthenticationCodeSms(encryptedUserName, 'resetPwd', function (res) { if (res.success) { + showResult(res.message); setCodeTimeoutByModify(); } }) Index: ssts-web/src/main/webapp/logon.jsp =================================================================== diff -u -r40916 -r40917 --- ssts-web/src/main/webapp/logon.jsp (.../logon.jsp) (revision 40916) +++ ssts-web/src/main/webapp/logon.jsp (.../logon.jsp) (revision 40917) @@ -376,6 +376,7 @@ var encryptedUserName = encrypt.encrypt(userName); sendAuthenticationCodeSms(encryptedUserName, 'resetPwd', function (res) { if (res.success) { + showResult(res.message); setCodeTimeoutByModify(); } }) Index: ssts-web/src/main/webapp/personalSetting/showModifyPWDWindowByExt.js =================================================================== diff -u -r40911 -r40917 --- ssts-web/src/main/webapp/personalSetting/showModifyPWDWindowByExt.js (.../showModifyPWDWindowByExt.js) (revision 40911) +++ ssts-web/src/main/webapp/personalSetting/showModifyPWDWindowByExt.js (.../showModifyPWDWindowByExt.js) (revision 40917) @@ -3,6 +3,7 @@ // Encrypt with the public key... sendAuthenticationCodeSms(encryptedUserName, 'resetPwd', function (res) { if (res.success) { + showResult(res.message); setCodeTimeoutByModify(); } })