-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathforgot-password.php
More file actions
31 lines (26 loc) · 1.1 KB
/
forgot-password.php
File metadata and controls
31 lines (26 loc) · 1.1 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
<?php
$body_id = 'forgotbody';
?>
<script src='js/forgotPasswordView.js'></script>
<?php require_once('header.php'); ?>
<div class="white_bg padding-page">
<div class="container">
<div class="col-xs-12 col-md-5 col-sm-7 col-centered">
<div class="login_box">
<div class="title">Enter your email</div>
<form method="post" action="" id="forgotpasswordform" onsubmit="return submitPasswordRequest();">
<div class="form-group">
<input type="email" class="form-control" placeholder="Enter your email" id="fp_email" name="fp_email">
</div>
<div class="submit">
<button class="btn btn-default" title="Submit" type="submit" name="fp_submit" id="fp_submit">Submit</button>
</div>
</form>
<div class="dontac"><a href="register.php">Don't have an account?</a></div>
<div class="create_account"><a target="_blank" href="#">
</a></div>
</div>
</div>
</div>
</div>
<?php require_once('footer.php'); ?>