-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathforgot-password.js
66 lines (61 loc) · 2.09 KB
/
forgot-password.js
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
import React from "react";
import Head from "next/head";
import Link from "next/link";
import NavBar from "../components/Frontend/Header/NavBar";
import Footer from "../components/Frontend/Footer/Footer";
const ForgotPassword = () => {
return (
<>
<Head>
<title>Forgot Password || Job Hunt - Bangladesh</title>
<meta
name="description"
content="Forgot Password || Job Hunt - Bangladesh || This Website is for job seekers in Bangladesh"
/>
<link rel="icon" href="/favicon.png" />
</Head>
<NavBar />
<div className="container py-5 my-5">
<div className="row">
<div className="col-lg-4 col-md-6 col-sm-12 mx-auto">
<div className="text-center">
<div className="font-sm primary-color">Forgot Password</div>
<h2 className="my-2 fw-bolder">Reset Your Password</h2>
<p className="font-sm text-muted mb-4">
Enter email address associated with your account and we'll send you a link to reset your password
</p>
</div>
<form className="login-register text-start my-5">
<div className="form-group">
<label className="form-label fontSize14" for="input-1">
Email address *
</label>
<input
className="no-outline"
id="input-1"
type="email"
required=""
name="email"
placeholder="Your email address"
/>
</div>
<div className="d-flex justify-content-center align-items-center my-3 text-center">
<div className="login-btn w-100" type="submit" name="login">
Continue
</div>
</div>
<div className="text-muted text-center">
Don't have an Account?{" "}
<Link className="text-decoration-none" href="/register">
Register
</Link>
</div>
</form>
</div>
</div>
</div>
<Footer />
</>
)
}
export default ForgotPassword