-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathenter_otp.html
51 lines (47 loc) · 1.59 KB
/
enter_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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script
src="https://kit.fontawesome.com/f1831153cc.js"
crossorigin="anonymous"
></script>
<title>Wonderwins Cricket</title>
<link rel="icon" type="image/x-icon" href="https://png.pngtree.com/background/20210714/original/pngtree-simple-light-blue-background-picture-image_1219004.jpg">
<link rel="stylesheet" href="styles/enter_otp.css">
<link rel="stylesheet" href="styles/index.css">
</head>
<body>
<div id="navbar">
</div>
<div id="parent">
<div id="part1">
<h1>
Enter Veification code
</h1>
<p>
Please Enter OTP Which You Received On Your Last <br>
Entered Mobile Number
</p>
<h2>Enter OTP Success</h2>
<input type="number" placeholder="Enter OTP" id="OTP">
<button id="verify" onclick="Verify()">Verify</button>
</div>
<div id="part2">
</div>
</div>
</body>
</html>
<script src="scripts/enter_otp.js"></script>
<script type="module">
let Part2 = document.getElementById("part2");
import part2 from "./scripts/part2.js"
Part2.innerHTML = part2
</script>
<script type="module">
let navbar = document.getElementById("navbar");
import subtopnavbar from "./components/subtopnavbar.js"
navbar.innerHTML = subtopnavbar()
</script>