-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforget.php
More file actions
83 lines (69 loc) · 2.13 KB
/
forget.php
File metadata and controls
83 lines (69 loc) · 2.13 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
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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>Forget password</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- ** CSS Plugins Needed for the Project ** -->
<!-- Bootstrap -->
<link rel="stylesheet" href="plugins/bootstrap/bootstrap.min.css">
<!-- themefy-icon -->
<link rel="stylesheet" href="plugins/themify-icons/themify-icons.css">
<!--Favicon-->
<link rel="icon" href="images/favicon.png" type="image/x-icon">
<!-- fonts -->
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700&display=swap" rel="stylesheet">
<!-- Main Stylesheet -->
<link href="assets/style.css" rel="stylesheet" media="screen" />
<style>
body {
background-color: #f8f9fa;
}
.container {
max-width: 500px;
margin-top: 100px;
background-color: white;
padding: 20px;
border-radius: 5px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
h2 {
text-align: center;
margin-bottom: 30px;
}
.form-control {
border-radius: 0;
}
.btn {
border-radius: 0;
}
</style>
</head>
<body>
<div class="banner bg-cover" style="background-image: url(./images/background.jpg); background-size: cover;" >
<br><br>
<section class="section">
<div class="row">
<div class="col-md-6 mx-auto my-5">
<div class="card">
<div class="card-header">
<h2>Forget password</h2>
<form action="files/login_register.php" method="post" class="submitForm">
<div class="form-group">
<input type="email" id="email" name="forgot_email" placeholder="Enter email"
class="form-control mb-4 shadow rounded-0">
</div>
<div class="row">
<div class="col-5"></div>
<div class=""><button type="submit" class="btn btn-primary">Reset</button></div>
</div>
<div class="alertError"></div>
</form>
</div>
</div>
</div>
</div>
</section>
</div>
<?php include "files/jsLinks.php" ?>
</body>