web/views/pages/forgot-password.ejs
2021-11-21 13:42:38 +07:00

44 lines
No EOL
2 KiB
Text

<!doctype html>
<html lang="en">
<%- include('../layouts/header.ejs', {title: 'Forgot Password', state: 'forgot-password'}); %>
<body>
<%- include('../layouts/navbar.ejs', {types: 'v2', title: 'Forgot Password'}); %>
<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 a link to reset your password.</a>
</div>
<div class="card-body">
<form class="px-4 py-3" action="forgot-password" method="POST">
<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"
placeholder="Email address" type="email" id="email" name="email">
</div>
<input class="btn btn-resetpassword btn-primary" style="width: 100%;"
type="submit" value="Reset Password">
<br><br>
<div class="hoverforgot-1 text-center">
<a href="login">Or Return to Login</a>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<%- include('../layouts/footer.ejs', {state: 'forgot-password'}); %>
</body>
</html>