-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpasswordReset.html
84 lines (84 loc) · 3.94 KB
/
passwordReset.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>eMeal-Login</title>
<link href="https://fonts.googleapis.com/css?family=Signika" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" media="screen" href="css/style.css" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js" integrity="sha384-uefMccjFJAIv6A+rW+L4AHf99KvxDjWSu1z9VI8SKNVmz4sk7buKt/6v9KI65qnm" crossorigin="anonymous"></script>
<script type="text/javascript" src="https://s7.addthis.com/js/300/addthis_widget.js#pubid=ra-5ab88174f9a49214"></script>
</head>
<body>
<div id="navigation">
<div id="title">
<div class="addthis_inline_share_toolbox_20fu"></div>
<p>e<span>MEAL</span></p>
<div id="sign">
<ul>
<li><a href="login.html">Sign up</a></li>
</ul>
</div>
</div>
<ul id="nav">
<li class="active"><a href="homepage.php">HOME</a>
<li><a href="">STYLE</a>
<ul class="subnav">
<li><a href="#">Western</a></li>
<li><a href="#">Chinese</a></li>
<li><a href="#">Japanese</a></li>
</ul>
</li>
<li><a href="">PURPOSE</a>
<ul class="subnav">
<li><a href="#">Fitness</a></li>
<li><a href="#">Meat lover</a></li>
<li><a href="#">Vegetarian</a></li>
</ul>
</li>
<li><a href="">BOX SIZE</a></li>
<li><a href="">SHOPPING</a></li>
</ul>
<form id="search-form" method="post" >
<input type="text" placeholder="Search Here" />
</form>
</div>
<div id="sign-page">
<section class="background">
<div id="log_bg"></div>
<div class="sign-card">
<div class="container">
<form class="signup-form" action ="includes/forgot.php" method="POST">
<div class="row">
<div class="col">
<p class="second-heading">Password Reset</p>
</div>
</div>
<div class="row">
<p class="third-heading">E-mail Address
</p>
</div>
<div class="row">
<input class="login-input" type="email" name="email" required autocomplete="off" placeholder="Please enter your e-mail address" onfocus="this.placeholder=''" onblur="this.placeholder='Please enter your username'"/>
</div>
<div class="row">
<div class="col">
<input class="login-submit" type="submit" value="Submit" name="reset"/>
</div>
<div class="col">
<input class="login-submit" type="button" onclick='location.href=("login.html")' value="Back" />
</div>
</div>
</form>
</div>
</div>
</section>
</div>
<div id="footer">
<p>©2018 eMeal Company. All Rights Reserved</p>
</div>
</body>
</html>