-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOTP.js
53 lines (43 loc) · 988 Bytes
/
OTP.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
let otpbtn=document.querySelector('#otp')
let smtbtn=document.querySelector('#smt_btm')
let OTP_Num;
otpbtn.addEventListener('click',gen_OTP)
function gen_OTP(){
OTP_Num =OTP_Digits()
alert(OTP_Num)
}
smtbtn.addEventListener('click', validateotp)
function validateotp(){
let input=document.querySelector('#input').value
if(input==="")
{
Swal.fire({
title: 'Kindly Insert OTP',
text: '',
icon: 'error',
confirmButtonText: 'ok'
})
}
else if(input!=OTP_Num)
Swal.fire({
title: 'Invalid OTP!',
text: 'Oops Try again',
icon: 'error',
confirmButtonText: 'ok'
})
else
Swal.fire({
title: 'Valid OTP!',
text: 'Good',
icon: 'success',
confirmButtonText: 'ok'
})
}
function OTP_Digits(){
let code=""
for(let i=1;i<7;i++)
{
code+= Math.floor(Math.random()*7)
}
return code
}