-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOTP.html
27 lines (23 loc) · 840 Bytes
/
OTP.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OTP Generator</title>
<link rel="stylesheet" href="OTP.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/sweetalert2.all.min.js" defer></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/sweetalert2.min.css">
</head>
<body>
<div class="container">
<div class="input">
<h2>OTP Generator</h2>
<input id="input" type="tel" placeholder="Enter OTP"> <button id="otp">Get OTP</button>
</div>
<div id="submit_btn">
<button type="submit" id="smt_btm">Submit</button>
</div>
</div>
<script src="OTP.js"></script>
</body>
</html>