forked from zuramai/mazer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauth-forgot-password.html
35 lines (32 loc) · 1.32 KB
/
auth-forgot-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
{% set title = 'Forgot Password' %}
{% extends 'src/layouts/auth.html' %}
{% block content %}
<div class="row h-100">
<div class="col-lg-5 col-12">
<div id="auth-left">
<div class="auth-logo">
<a href="index.html"><img src="assets/static/images/logo/logo.svg" alt="Logo"></a>
</div>
<h1 class="auth-title">Forgot Password</h1>
<p class="auth-subtitle mb-5">Input your email and we will send you reset password link.</p>
<form action="index.html">
<div class="form-group position-relative has-icon-left mb-4">
<input type="email" class="form-control form-control-xl" placeholder="Email">
<div class="form-control-icon">
<i class="bi bi-envelope"></i>
</div>
</div>
<button class="btn btn-primary btn-block btn-lg shadow-lg mt-5">Send</button>
</form>
<div class="text-center mt-5 text-lg fs-4">
<p class='text-gray-600'>Remember your account? <a href="auth-login.html" class="font-bold">Log in</a>.
</p>
</div>
</div>
</div>
<div class="col-lg-7 d-none d-lg-block">
<div id="auth-right">
</div>
</div>
</div>
{% endblock %}