-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforgot-password.php
More file actions
37 lines (36 loc) · 2.11 KB
/
Copy pathforgot-password.php
File metadata and controls
37 lines (36 loc) · 2.11 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
<!DOCTYPE html>
<html data-bs-theme="light" lang="en">
<?php include 'head.php'; ?>
<body class="bg-gradient-primary">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-9 col-lg-12 col-xl-10">
<div class="card shadow-lg o-hidden border-0 my-5">
<div class="card-body p-0">
<div class="row">
<div class="col-lg-6 d-none d-lg-flex">
<div class="flex-grow-1 bg-password-image" style="background-image: url("assets/img/dogs/image1.jpeg");"></div>
</div>
<div class="col-lg-6">
<div class="p-5">
<div class="text-center">
<h4 class="text-dark mb-2">Forgot Your Password?</h4>
<p class="mb-4">We get it, stuff happens. Just enter your email address below and we'll send you a link to reset your password!</p>
</div>
<form class="user">
<div class="mb-3"><input class="form-control form-control-user" type="email" id="exampleInputEmail" aria-describedby="emailHelp" placeholder="Enter Email Address..." name="email"></div><button class="btn btn-primary d-block btn-user w-100" type="submit">Reset Password</button>
</form>
<div class="text-center">
<hr><a class="small" href="register.html">Create an Account!</a>
</div>
<div class="text-center"><a class="small" href="login.html">Already have an account? Login!</a></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>