-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpassword.html
61 lines (52 loc) · 2.57 KB
/
password.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
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> FlyFusion login/sign up page</title>
<link rel="stylesheet" href="style.css">
<link href="srcipt.js">
</head>
<body class="background">
<div class="back">
<div class="login-container">
<h1 class="header"> Reset your password !!</h1>
<form class="login-class">
<div class="input-group">
<label for="email" class="text">Email</label>
<input type="email" id="email" placeholder="Adventure Awaits!">
</div>
<button type="submit" class="login-button">Generate OTP</button>
<form id="otpForm">
<div class="otp-inputs">
<!-- <p class="text">ENTER OTP</p> -->
<label for="otp" class="otp">Enter OTP</label>
<input type="text" maxlength="1" class="otp-box" placeholder="3" required>
<input type="text" maxlength="1" class="otp-box" placeholder="0" required>
<input type="text" maxlength="1" class="otp-box" placeholder="1">
<input type="text" maxlength="1" class="otp-box" placeholder="2">
<input type="text" maxlength="1" class="otp-box" placeholder="9">
<input type="text" maxlength="1" class="otp-box" placeholder="5">
</div>
<button type="submit" class="login-button">Verify OTP</button>
</form>
<div class="input-group">
<label for="password" class="text">Password</label>
<input type="password" id="password" placeholder="Adventure Awaits">
</div>
<div class="input-group">
<label for="password" class="text"> Confirm Password</label>
<input type="password" id="password" placeholder="Confirm your password">
</div>
<div class="button">
<button type="submit" class="login-button">Reset</button>
<button type="submit" class="login-button">
<a href="./login.html">Back
</a>
</button>
</div>
</form>
</div>
</div>
</body>
</html>