-
Notifications
You must be signed in to change notification settings - Fork 0
/
reset-password.html
115 lines (100 loc) · 4.65 KB
/
reset-password.html
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<title>Reset Password - JobsGuru.ai</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="">
<meta property="og:type" content="">
<meta property="og:url" content="">
<meta property="og:image" content="">
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/reset-password.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Nosifer&display=swap">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Nosifer&display=swap">
<link href="https://fonts.googleapis.com/css2?family=Special+Elite&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<meta name="theme-color" content="#fafafa">
</head>
<header>
<div class="header container mt-4">
<nav class="navbar navbar-expand-lg navbar-light">
<div class="container-fluid">
<a class="navbar-brand" href="https://huntscato.github.io/jobs-guru-4/">
<img id="logo" src="img/logo.png" alt="JobsGuru.ai Logo" class="mx-auto d-block img-fluid" />
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarSupportedContent">
<ul class="navbar-nav">
<li class="nav-item signup-dark">
<a class="nav-link" href="https://huntscato.github.io/jobs-guru-4/signup">Sign Up</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://huntscato.github.io/jobs-guru-4/login-page">Log In</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://huntscato.github.io/jobs-guru-4/about.html">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://huntscato.github.io/jobs-guru-4/blogs.html">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://huntscato.github.io/jobs-guru-4/faq.html">FAQ</a>
</li>
</ul>
</div>
</div>
</nav>
</div>
</header>
<div class="content">
<div class="reset-text">
<h1 class="reset-h1">Need to reset your password?</h1>
<h2 class="reset-h2">Fill out the form below and we'll do the rest.</h2>
</div>
<div class="container">
<div class="row justify-content-center mt-5">
<div class="card-body">
<form class="reset-form">
<div class="mb-3">
<input type="email" class="form-control" id="login_email" placeholder="Enter Your JobsGuru Login E-Mail Address">
</div>
<div class="row mb-3">
<div class="col">
<input type="text" id="password" class="form-control" placeholder="New Password">
</div>
<div class="col">
<input type="text" id="confirmPassword" class="form-control" placeholder="Confirm New Password">
</div>
</div>
<button type="submit" class="btn btn-success btn-block reset-button">Reset Password</button>
</form>
</div>
</div>
</div>
</div>
<body>
<!-- Add your site or application content here -->
<script src="js/vendor/modernizr-3.11.2.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/5.3.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.0/js/bootstrap.bundle.min.js"></script>
<!-- Google Analytics: change UA-XXXXX-Y to be your site's ID. -->
<script>
window.ga = function () { ga.q.push(arguments) }; ga.q = []; ga.l = +new Date;
ga('create', 'UA-XXXXX-Y', 'auto'); ga('set', 'anonymizeIp', true); ga('set', 'transport', 'beacon'); ga('send', 'pageview')
</script>
<script src="https://www.google-analytics.com/analytics.js" async></script>
</body>
</html>