-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrecovery.html
More file actions
47 lines (42 loc) · 1.76 KB
/
recovery.html
File metadata and controls
47 lines (42 loc) · 1.76 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
47
<html>
<head>
<title>Password Recovery</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!--js for this page-->
<script src="recovery.js"></script>
</head>
<body>
<div class='container'>
<div class='row'>
<div class="col-xs-hidden col-sm-2"></div>
<div class="col-xs-12 col-sm-8">
<div class="row">
<div class="form-group">
<label for="usr">Email:</label>
<input type="text" class="form-control" id="usr">
</div>
</div>
<div class="row">
<div class="col-xs-6 text-left">
<a class="btn btn-info" style="color:white" href="index.html">Back</a>
</div>
<div class="col-xs-6 text-right">
<button type="button" class="btn btn-info" id="recoveryBtn">Send Me My Password</button>
</div>
</div>
</div>
<div class="col-xs-hidden col-sm-2"></div>
</div>
<div class="row">
<div class="jumbotron hidden" id="alertWindow">
Email Sent
</div>
</div>
</div>
</body>
</html>