| | |
| | | this.emailCounterSec -= 1; |
| | | if (this.emailResendCounter !== 0) { |
| | | this.emailResendCounter -= 1; |
| | | } |
| | | if (this.emailCounterSec === 0) { |
| | | if (this.emailResendCounter === 0) { |
| | | this.verificationCode = ''; |
| | | this.regenerateImgOfVerification(); |
| | | } |
| | | } |
| | | if (this.emailCounterSec === 0) { |
| | | clearInterval(this.emailResendInterval); |
| | | } |
| | | }, 1000) |
| | |
| | | this.otpCounterSec -= 1; |
| | | if (this.otpResendCounter !== 0) { |
| | | this.otpResendCounter -= 1; |
| | | } |
| | | if (this.otpCounterSec === 0) { |
| | | if (this.otpResendCounter === 0) { |
| | | this.verificationCode = ''; |
| | | this.regenerateImgOfVerification(); |
| | | } |
| | | } |
| | | if (this.otpCounterSec === 0) { |
| | | clearInterval(this.otpInterval); |
| | | } |
| | | }, 1000) |