web/views/pages/forgot-verification-sent.ejs
2021-11-21 16:04:32 +07:00

31 lines
No EOL
1.2 KiB
Text

<!doctype html>
<html lang="en">
<%- include('../layouts/header.ejs', {title: 'Forgot Password', state: 'forgot-verification-sent'}); %>
<body>
<%- include('../layouts/navbar.ejs', {types: 'v2', title: 'Forgot Password'}); %>
<br>
<div data-aos="fade-in" data-aos-delay="500" class="container">
<div class="row">
<div class="col">
<div class="card col-md-6 col-lg-6 col-xl-8">
<div class="card-header" style="color: white;">
<h2>Check Your Inbox !!!</h2>
</div>
<lottie-player style="display: -webkit-box;-webkit-box-pack: center;" autoplay background="transparent" class="icon" loop speed="1"
src="https://assets5.lottiefiles.com/packages/lf20_gMQp3a.json"></lottie-player>
<div class="card-body">
<h5 class="card-text" style="color: #dedede;">To reset your password, please check your email for a link
to change your password.</h5>
</div>
</div>
</div>
</div>
</div>
<%- include('../layouts/footer.ejs', {state: 'login-verification-sent'}); %>
</body>
</html>