-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforgotpassword.html
More file actions
46 lines (46 loc) · 1.65 KB
/
forgotpassword.html
File metadata and controls
46 lines (46 loc) · 1.65 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Forgot Password</title>
<link rel="stylesheet" href="fgpw.css">
<link rel="icon" href="images/LOGO.png">
</head>
<body>
<div id="main-container">
<div id="dropdown">
<img src="images/LOGO.png" alt="Logo" width="100%" height="100%" id="logo-icon">
</div>
<div id="icon-menu">
<div id="harmbarger">
<img src="images/Humburger-Menu.png" alt="harmburger menu icon" width="50%" height="50%" id="harmburger-icon">
</div>
<div id="nav">
<ul id="navlist">
<li id="list-items" ><a href="index.html" >Home</a></li>
<li id="list-items" ><a href="contact.html" >Contact</a></li>
<li id="list-items" ><a href="allabout.html" >About</a></li>
</ul>
</div>
</div>
</div>
<div id="mainContainer">
<header>
<h2>
Forgotten password!
</h2>
</header>
<form action="" id="main-div">
<div class="email">
<p>Enter your email:</p>
<input type="email" id="email" placeholder="Enter your email here">
</div>
<div class="submit">
<input type="submit" id="submitButton">
</div>
</form>
</div>
<script src="forgetpassword.js"></script>
</body>
</html>