You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789101112 |
- function showOtpBox() {
- document.getElementById('div_ForgotPswd').style.display = 'none';
- document.getElementById('modal_Otp').style.display = 'block';
- }
- function showPasswordBox() {
- document.getElementById('modal_Otp').style.display = 'none';
- document.getElementById('div_ResetPswd').style.display = 'block';
- }
- function showSuccessBox() {
- document.getElementById('div_ResetPswd').style.display = 'none';
- document.getElementById('div_SuccessMsg').style.display = 'block';
- }
|