-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforgot.html
More file actions
43 lines (40 loc) · 1.6 KB
/
forgot.html
File metadata and controls
43 lines (40 loc) · 1.6 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
<html>
<head>
<title>Log In</title>
<script src='https://cdn.firebase.com/js/client/2.0.4/firebase.js'></script>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js'></script>
<script src='https://code.jquery.com/ui/1.11.4/jquery-ui.min.js'></script>
<script src='js/forgot.js'></script>
<link rel="stylesheet" href="styles/jquery-ui.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles/index.css" type="text/css">
<style>
.dlg-no-close .ui-dialog-titlebar-close {
display: none;
}
#dialogEmail #dialogEmailErr {
diplay: none;
}
</style>
</head>
<body>
<div id="dialogEmail" title="Reset Successful">Password reset email sent.</div>
<div id="dialogEmailErr" title="Error">Error sending password reset email.</div>
<div class="page-header container text-center">
<h1>International Alert Security App</h1>
</div>
<div class="container text-center">
<h3>Forgot Password</h3>
</div>
<div id="container" class="info">
<p>Email Address
<input class="email" type="email" id="name" placeholder="Enter your email">
</p>
<button onClick="passReset()" class="forgotpass">Send Password Reset</button>
<br>
</div>
<form name="back" action="index.html">
<input class="backbutton" type="submit" value="Back">
</form>
</body>
</html>