-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforgot.html
More file actions
28 lines (28 loc) · 854 Bytes
/
Copy pathforgot.html
File metadata and controls
28 lines (28 loc) · 854 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
<html>
<head>
<title>
Password Reset
</title>
<link rel="stylesheet" href="forgot.css">
<link href="https://fonts.googleapis.com/css?family=Hepta+Slab&display=swap" rel="stylesheet">
</head>
<body>
<header>
<a href="index.html">Home</a>
</header>
<div class="format">
<form action="submit.html">
<img src="security.png" alt="lock">
<h4>
Forgot Password ?
</h4>
<h5>You can reset your passord here</h5>
<br>
<p>Enter Your Email</p>
<input type="email" placeholder="Email Id" required><br>
<br>
<input type="submit" value="Get OTP">
</form>
</div>
</body>
</html>