2021-11-09 03:11:53 +01:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
|
2021-11-09 06:15:29 +01:00
|
|
|
<%- include('../layouts/header.ejs', {title: 'Forgot Password', state: 'forgot-password'}); %>
|
2021-11-09 03:11:53 +01:00
|
|
|
|
|
|
|
<body>
|
2021-11-09 05:19:45 +01:00
|
|
|
<%- include('../layouts/navbar.ejs', {types: 'v2', title: 'Forgot Password'}); %>
|
2021-11-09 03:11:53 +01:00
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col">
|
|
|
|
<div class="card text-white col-md-8 col-lg-6 col-xl-5">
|
|
|
|
<h1 class="card-header text-white">Forgot Password</h1>
|
|
|
|
<lottie-player autoplay background="transparent" class="icon" loop speed="1"
|
|
|
|
src="https://assets9.lottiefiles.com/packages/lf20_xvrofzfk.json"></lottie-player>
|
|
|
|
<div class="py-3 text" style="padding: 0% 5%; text-align: center;">
|
|
|
|
<a>Enter your email to receive instructions on how to reset your password.</a>
|
|
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
|
|
<form class="px-4 py-3">
|
|
|
|
<div class="form-group" style="text-align: left;">
|
|
|
|
<a data-feather="mail" href="" style="font-size: 40px;"></a>
|
|
|
|
<label for="exampleDropdownFormEmail1">Email</label>
|
|
|
|
<input class="form-control input-sm text-center" id="exampleDropdownFormEmail1"
|
|
|
|
placeholder="Email address" type="email">
|
|
|
|
</div>
|
2021-11-09 05:13:46 +01:00
|
|
|
<a href="otp"><input class="btn btn-resetpassword btn-primary" style="width: 100%;"
|
2021-11-09 03:11:53 +01:00
|
|
|
type="button" value="Reset Password"></a>
|
|
|
|
<br><br>
|
|
|
|
<div class="hoverforgot-1 text-center">
|
2021-11-09 05:13:46 +01:00
|
|
|
<a href="login">Or Return to Login</a>
|
2021-11-09 03:11:53 +01:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2021-11-10 06:03:14 +01:00
|
|
|
<%- include('../layouts/footer.ejs', {state: 'forgot-password'}); %>
|
2021-11-09 03:11:53 +01:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|