-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathforgot.html
42 lines (42 loc) · 1.24 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TrashCash-Login</title>
<link rel="stylesheet" href="login.css">
<link rel="stylesheet" href="stylesheet.css">
<link rel="stylesheet" href="responsive.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
</head>
<body>
<header>
<div class="container">
<div class="header-left">
<a href="index.html">
<h3 class="logo">Trash Cash</h3>
</a>
</div>
<div class="header-icon">
<span class="fa fa-bars menu-icon"></span>
</div>
<div class="header-right">
<a href="about.html">About Us</a>
<a href="points.html">Points</a>
<a href="pickup.html">Pickup</a>
<a href="login.html">Login</a>
</div>
</div>
</header>
<div class="login">
<h4>Enter the registered email:</h4>
<form>
<div class="form-field-container">
<label for="email">Email:</label>
<input type="email" id="user_email" placeholder="Enter Email" name="user_email" required>
</div>
<button type="submit" class="submit-btn">Submit</button>
</form>
</div>
</body>
</html>