-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforgot.html
executable file
·47 lines (47 loc) · 1.76 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
44
45
46
47
<!doctype HTML>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Forgot Password</title>
<!--Get mootools-->
<script src="js/mootools-core.js" type="text/javascript"></script>
<script src="js/mootools-more.js" type="text/javascript"></script>
<script src="js/cookie.js"></script>
<script>
function gotoHome()
{
window.location="index.html";
}
</script>
<link href="css/index.css" rel="stylesheet" type="text/css">
</head>
<body>
<div>
<div id="outerContainer">
<div class="toolbar">
<div id="toolbarLeft">
<button onclick="gotoHome()">Home</button>
</div>
<center>Getting Back Password</center>
</div>
<div id="viewerContainer">
<div id="errorWrapper">
<br>
<fieldset>
<legend>Forgot Password</legend>
<div>
<form method="POST" action="api/forgot.php">
<input type="text" name="email" placeholder="Your Email Address">
<input type="submit">
</form>
</div>
</fieldset>
</div>
</div>
<div>
</div>
</div>
</div>
</body>
</html>