-
Notifications
You must be signed in to change notification settings - Fork 0
/
forgot-password.php
92 lines (69 loc) · 2.49 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Forgot Password</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0">
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<!-- Fontawesome CSS -->
<link rel="stylesheet" href="assets/plugins/fontawesome/css/fontawesome.min.css">
<link rel="stylesheet" href="assets/plugins/fontawesome/css/all.min.css">
<!-- Main CSS -->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body class="account-page">
<!-- Main Wrapper -->
<div class="main-wrapper">
<?php include 'head_res.php'; ?>
<!-- Page Content -->
<div class="content">
<div class="container-fluid">
<div class="row">
<div class="col-md-8 offset-md-2">
<!-- Account Content -->
<div class="account-content">
<div class="row align-items-center justify-content-center">
<div class="col-md-7 col-lg-6 login-left">
<img src="assets/img/login-banner.png" class="img-fluid" alt="Login Banner">
</div>
<div class="col-md-12 col-lg-6 login-right">
<div class="login-header">
<h3>Forgot Password?</h3>
<p class="small text-muted">Enter your email to get a password reset link</p>
</div>
<!-- Forgot Password Form -->
<form action="">
<div class="form-group form-focus">
<input type="email" class="form-control floating">
<label class="focus-label">Email</label>
</div>
<div class="text-right">
<a class="forgot-link" href="login.php">Remember your password?</a>
</div>
<button class="btn btn-primary btn-block btn-lg login-btn" type="submit">Reset Password</button>
</form>
<!-- /Forgot Password Form -->
</div>
</div>
</div>
<!-- /Account Content -->
</div>
</div>
</div>
</div>
<!-- /Page Content -->
<?php include('footer.php'); ?>
</div>
<!-- /Main Wrapper -->
<!-- jQuery -->
<script src="assets/js/jquery.min.js"></script>
<!-- Bootstrap Core JS -->
<script src="assets/js/popper.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<!-- Custom JS -->
<script src="assets/js/script.js"></script>
</body>
</html>