New UI layout
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

forgotpassword.js 497B

123456789101112
  1. function showOtpBox() {
  2. document.getElementById('div_ForgotPswd').style.display = 'none';
  3. document.getElementById('modal_Otp').style.display = 'block';
  4. }
  5. function showPasswordBox() {
  6. document.getElementById('modal_Otp').style.display = 'none';
  7. document.getElementById('div_ResetPswd').style.display = 'block';
  8. }
  9. function showSuccessBox() {
  10. document.getElementById('div_ResetPswd').style.display = 'none';
  11. document.getElementById('div_SuccessMsg').style.display = 'block';
  12. }