-
Notifications
You must be signed in to change notification settings - Fork 0
/
otp.html
27 lines (27 loc) · 846 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./styles/otp.css">
</head>
<body>
<div id="container">
<div id="upcontainer">
<div id="head">
<div id="login">Login</div>
<div id="x">X</div>
</div>
<div id="down">
<div id="down1">Welcome Back</div>
<input type="tel" id="input" placeholder="Please Enter Password">
<h5 id="res"></h5>
<button id="submit" onclick="submit()">Submit</button>
</div>
</div>
</div>
</body>
</html>
<script src="./scripts/otp.js"></script>