forked from Revathi-80/login-page
-
Notifications
You must be signed in to change notification settings - Fork 2
/
forgot.html
43 lines (37 loc) · 1.36 KB
/
forgot.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
<!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>Forgot page</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" href="/193457387-7104c5a0-6ff0-428c-b7f2-d308f87045f4.ico" type="image/x-icon" />
</head>
<body>
<div class="overlay">
<form class="form">
<div class="con">
<header class="head-form">
<h2>Forgot Password</h2>
<p>Write Email-Id to reset password</p>
</header>
<br />
<div class="field-set">
<div class="input-field">
<span class="input-item">
<i class="fa-solid fa-envelope"></i>
</span>
<input class="form-input" id="txt-input" type="email" name="email" pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,}$" placeholder="Enter Email" autocomplete="off" />
</div>
<button class="submit-button" style="color: white;">Submit</button>
</div>
<button class="btn-sign-up">
<a href="./index.html">Log-in <i class="fa-solid fa-right-to-bracket"></i></a>
</button>
</div>
</form>
</div>
<script src="https://kit.fontawesome.com/1b83f7dbef.js" crossorigin="anonymous"></script>
</body>
</html>