-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforgot-password.php
More file actions
50 lines (43 loc) · 2.06 KB
/
forgot-password.php
File metadata and controls
50 lines (43 loc) · 2.06 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
48
49
50
<?php
include_once("header.php");
include_once("navigation.php");
include_once("connection.php");
echo '<div id="page-content-wrapper">';
?>
<br/><br/><br/>
<div class="container">
<div class="row">
<div class="row">
<div class="col-md-4 col-md-offset-4">
<div class="panel panel-default">
<div class="panel-body">
<div class="text-center" id="forgotPasswordSuccess">
<h3><i class="fa fa-lock fa-4x"></i></h3>
<h2 class="text-center">Forgot Password?</h2>
<p>You can reset your password here.</p>
<div class="panel-body">
<form class="form">
<fieldset>
<div class="form-group">
<div class="input-group">
<span class="input-group-addon"><i class="glyphicon glyphicon-envelope color-blue"></i></span>
<input id="emailInput" placeholder="email address" class="form-control" type="email" required>
</div>
</div>
<div class="form-group">
<input class="btn btn-lg btn-primary btn-block" value="Send My Password" type="button" onclick="forgotPassword()">
</div>
<div class="alert alert-danger" id="emAlert" style="display: none;">Please enter a valid email address.</div>
</fieldset>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php
include_once('footeradmin.php');
?>