90 lines
4.3 KiB
HTML
90 lines
4.3 KiB
HTML
{% extends layout_path %}
|
|
|
|
{% load static %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}Reset Password - Pages{% endblock %}
|
|
|
|
{% block vendor_css %}
|
|
{{ block.super }}
|
|
<link rel="stylesheet" href="{% static 'vendor/libs/@form-validation/form-validation.css' %}" />
|
|
{% endblock vendor_css %}
|
|
|
|
{% block vendor_js %}
|
|
{{ block.super }}
|
|
<script src="{% static 'vendor/libs/@form-validation/popular.js' %}"></script>
|
|
<script src="{% static 'vendor/libs/@form-validation/bootstrap5.js' %}"></script>
|
|
<script src="{% static 'vendor/libs/@form-validation/auto-focus.js' %}"></script>
|
|
{% endblock vendor_js %}
|
|
|
|
{% block page_css %}
|
|
{{ block.super }}
|
|
<link rel="stylesheet" href="{% static 'vendor/css/pages/page-auth.css' %}" />
|
|
{% endblock page_css %}
|
|
|
|
{% block page_js %}
|
|
{{ block.super }}
|
|
<script src="{% static 'js/authentication.js' %}"></script>
|
|
{% endblock page_js %}
|
|
|
|
{% block content %}
|
|
<div class="authentication-wrapper authentication-cover">
|
|
<!-- Logo -->
|
|
<a href="{% url 'index' %}" class="app-brand auth-cover-brand">
|
|
<span class="app-brand-logo demo">{% include 'partials/logo.html' %}</span>
|
|
<span class="app-brand-text demo text-heading fw-bold">{% get_theme_variables 'template_name' %}</span>
|
|
</a>
|
|
<!-- /Logo -->
|
|
<div class="authentication-inner row m-0">
|
|
<!-- /Left Text -->
|
|
<div class="d-none d-xl-flex col-xl-8 p-0">
|
|
<div class="auth-cover-bg d-flex justify-content-center align-items-center">
|
|
<img src="{% static 'img/illustrations/auth-reset-password-illustration-' %}{{ COOKIES.theme|default:theme }}.png" alt="auth-reset-password-cover" class="my-5 auth-illustration" data-app-light-img="illustrations/auth-reset-password-illustration-light.png" data-app-dark-img="illustrations/auth-reset-password-illustration-dark.png" />
|
|
<img src="{% static 'img/illustrations/bg-shape-image-' %}{{ COOKIES.theme|default:theme }}.png" alt="auth-reset-password-cover" class="platform-bg" data-app-light-img="illustrations/bg-shape-image-light.png" data-app-dark-img="illustrations/bg-shape-image-dark.png" />
|
|
</div>
|
|
</div>
|
|
<!-- /Left Text -->
|
|
|
|
<!-- Reset Password -->
|
|
<div class="d-flex col-12 col-xl-4 align-items-center authentication-bg p-6 p-sm-12">
|
|
<div class="w-px-400 mx-auto mt-12 pt-5">
|
|
<h4 class="mb-1">Reset Password 🔒</h4>
|
|
{% if messages %}
|
|
{% for message in messages %}
|
|
<div class="alert {% if message.tags == 'success' %}alert-success{% elif message.tags == 'error' %}alert-danger{% else %}alert-warning{% endif %}" role="alert">
|
|
{{ message }}
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
<p class="mb-6"><span class="fw-medium">Your new password must be different from previously used passwords</span></p>
|
|
<form id="formAuthentication" class="mb-6" method="post">
|
|
{% csrf_token %}
|
|
<div class="mb-6 form-password-toggle form-control-validation">
|
|
<label class="form-label" for="password">New Password</label>
|
|
<div class="input-group input-group-merge">
|
|
<input type="password" id="password" class="form-control" name="password" placeholder="············" aria-describedby="password" />
|
|
<span class="input-group-text cursor-pointer"><i class="icon-base ti tabler-eye-off"></i></span>
|
|
</div>
|
|
</div>
|
|
<div class="mb-6 form-password-toggle form-control-validation">
|
|
<label class="form-label" for="confirm-password">Confirm Password</label>
|
|
<div class="input-group input-group-merge">
|
|
<input type="password" id="confirm-password" class="form-control" name="confirm-password" placeholder="············" aria-describedby="password" />
|
|
<span class="input-group-text cursor-pointer"><i class="icon-base ti tabler-eye-off"></i></span>
|
|
</div>
|
|
</div>
|
|
<button class="btn btn-primary d-grid w-100 mb-6" type="submit">Set new password</button>
|
|
<div class="text-center">
|
|
<a href="{% url 'login' %}">
|
|
<i class="icon-base ti tabler-chevron-left scaleX-n1-rtl me-1_5"></i>
|
|
Back to login
|
|
</a>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<!-- /Reset Password -->
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|