New UI layout
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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