-
Notifications
You must be signed in to change notification settings - Fork 0
/
forgot-password.php
42 lines (41 loc) · 1.66 KB
/
forgot-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
<?php require_once "controllerUserData.php"; ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Forgot Password</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-4 offset-md-4 form">
<form action="forgot-password.php" method="POST" autocomplete="">
<h2 class="text-center">Forgot Password</h2>
<p class="text-center">Enter your email address</p>
<?php
if(count($errors) > 0){
?>
<div class="alert alert-danger text-center">
<?php
foreach($errors as $error){
echo $error;
}
?>
</div>
<?php
}
?>
<div class="form-group">
<input class="form-control" type="email" name="email" placeholder="Enter email address" required value="<?php echo $email ?>">
</div>
<div class="form-group">
<input class="form-control button" type="submit" name="check-email" value="Continue">
</div>
</form>
</div>
</div>
</div>
</body>
</html>