-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathforgot.html
28 lines (27 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Login</title>
<link href="https://fonts.googleapis.com/css?family=Ubuntu:400,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="login.css">
</head>
<body>
<div class="container flex flex-middle">
<form class="form" action = "login.php" method = "POST">
<h1 class="form-header">Reset Password</h1>
<div class="inp-box">
<input type="email" placeholder="Enter email" name="email" id="inp-text" required>
</div>
<p class="fourth"><a href="#">Login</a></p>
<p class="message">Name fields cannot be empty!</p>
<div class="btn">
<button class="button" name="reset">Reset Password</button>
</div>
</form>
</div>
<script src="./assets/js/index.js"></script>
</body>
</html>