-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreset.php
More file actions
30 lines (27 loc) · 1.53 KB
/
Copy pathreset.php
File metadata and controls
30 lines (27 loc) · 1.53 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
<?php require_once('includes/header.php'); ?>
<!--Main Page Content-->
<div class="container">
<div class="row">
<div class="col-lg-6 m-auto">
<div class="card mt-5">
<div class="card-title">
<h2 class="text-center pt-4"> Reset Password </h2>
<hr>
<?php reset_password(); ?>
</div>
<div class="card-body">
<form method="POST">
<input type="password" name="password" placeholder=" Password " class="form-control mb-2">
<input type="password" name="cpassword" placeholder=" Confirm Password " class="form-control mb-2">
<input type="hidden" name="pass_token" value="<?php echo token_generator(); ?>">
</div>
<div class="card-footer">
<button class="btn btn-success " name="btn_update"> Update Password </button>
<a href="login.php" class="btn btn-danger float-right"> Back </a>
</div>
</form>
</div>
</div>
</div>
</div>
<?php require_once('includes/footer.php'); ?>