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