-
Notifications
You must be signed in to change notification settings - Fork 2
/
Reset-Password.php
118 lines (66 loc) · 3.67 KB
/
Reset-Password.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<?php
session_start();
if(isset($_SESSION['id']))
{
header('location: index.php');
exit;
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>EventsWave</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.2/css/all.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap" />
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap-login-form.min.css" />
</head>
<body>
<!-- Start your project here-->
<section class="vh-100" style="background-image: url('assets/images/login_request/cover.png');">
<div class="container py-5 h-100">
<div class="row d-flex justify-content-center align-items-center h-100">
<div class="col col-xl-10">
<div class="card" style="border-radius: 1rem;">
<div class="row g-0">
<div class="col-md-6 col-lg-5 d-none d-md-block">
<img
src="assets/images/login_request/main_img.jpg"
alt="login form"
class="img-fluid" style="border-radius: 1rem 0 0 1rem;"
/>
</div>
<div class="col-md-6 col-lg-7 d-flex align-items-center">
<div class="card-body p-4 p-lg-5 text-black">
<form method="post" action="password-reset.php">
<img src="assets/images/login_request/small_logo.png" height="40px" width="auto"> <br><br>
<h5 class="fw-normal mb-3 pb-3" style="text-transform: uppercase; color: grey;"><b>Reset Your Password</b></h5>
<?php if(isset($_GET['error_message'])){ ?>
<p id="error_message" class="text-center alert-danger"><?php echo $_GET['error_message'];?></p>
<?php }?>
<p class="text-muted">Enter your email address, and we'll email you with instructions to reset your password.</p>
<div class="form-outline mb-4">
<input type="text" id="form2Example17" class="form-control form-control-lg" name="email" />
<label class="form-label" for="form2Example17">Enter Your Email Address</label>
</div>
<div class="pt-1 mb-4">
<button class="btn btn-dark btn-lg btn-block" name="reset-pass" type="submit" name="button">Change Password</button>
</div>
<p class="mb-5 pb-lg-2" style="color: #19afd4;">Don't have an account? <a href="create-account.php" style="color: #2696ca;">Register here</a></p>
<a href="#!" class="small text-muted">Terms of use.</a>
<a href="#!" class="small text-muted">Privacy policy</a>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<script type="text/javascript" src="assets/js/mdb.min.js"></script>
<script type="text/javascript"></script>
</body>
</html>