-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenter_otp.html
More file actions
34 lines (24 loc) · 815 Bytes
/
enter_otp.html
File metadata and controls
34 lines (24 loc) · 815 Bytes
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
<!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>reset_password_page</title>
<link rel="stylesheet" href="./styles/enter_otp.css" />
</head>
<body>
<div id="container">
<div>
<img src="https://i.ibb.co/RQhW0Jy/20221108-224623.png">
</div>
<form>
<label id="welcome" for="">Enter OTP</label>
<label id="email_label" for="">OTP</label>
<input id="email" type="text" />
<input id="submit" type="submit" value="Reset password">
</form>
</div>
</body>
<script src="./scripts/enter_otp.js"></script>
</html>