-
Notifications
You must be signed in to change notification settings - Fork 11
/
password_reset.php
57 lines (50 loc) · 2.37 KB
/
password_reset.php
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
51
52
53
54
55
56
57
<?php include_once("./validations/auth.php") ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Hephbudget | Password reset</title>
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/style.css" />
</head>
<body>
<div class="container m-0 p-0">
<img class="position-fixed greenbg" src="assets/images/green.png" alt="" />
<img class="position-fixed whitebg" src="assets/images/white.png" alt="" />
</div>
<p class="p-2 m-0"><a href="./" class="nav-link hephbrand text-light h5 font-weight-bold" style="color: inherit">HephBudget</a></p>
<div class="d-flex position-absolute justify-content-center align-items-center w-100 h-100">
<div class="col-md-5">
<form method="post" class="px-4 py-3 form">
<h5 class="text-center pb-2" style="color: #298b92;">Reset your password</h5>
<?php if (isset($fbk)) : ?>
<div class="alert alert-<?php echo $fbk["color"]; ?>">
<small> <?php echo $fbk["msg"]; ?></small>
</div>
<?php endif; ?>
<div class="form-group mb-4">
<input name="email" type="email" placeholder="Email address " class="form-control" />
</div>
<div class="form-group mb-4">
<input name="pass" type="password" placeholder="New password" class="form-control" />
</div>
<div class="form-group mb-4">
<input name="rpass" type="password" placeholder="Confirm password" class="form-control" />
</div>
<div class="form-group">
<button type="submit" class="btn btn-success" name="reset_password"> <i class="fa fa-refresh mr-1"></i> Reset password</button>
</div>
</form>
<section class="mt-3 text-center">
<a href="login.php" class="btn-title">Login to your account </a>
</section>
</div>
</div>
<div class="footer">
© HephBudget 2019.
</div>
</body>
</html>