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. }