Files
goodtimes/templates/registration/password_reset_complete.html
rizwanisready db213d3228 wrong commit
2024-02-29 13:25:50 +05:30

27 lines
1.1 KiB
HTML

{% extends 'layout/login.html' %}
{% load static %}
{% block body %}
<div id="layoutAuthentication">
<div id="layoutAuthentication_content">
<main>
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-5">
<div class="card shadow-lg border-0 rounded-lg mt-5">
<!-- <div class="card-header">
<h3 class="text-center font-weight-light my-4">Password Reset Confirm</h3>
{% include 'elements/message.html' %}
</div> -->
<div class="card-body">
<p>Your password has been changed successfully. Please <a href="{% url 'accounts:login' %}">Login</a></p>
</div>
</div>
</div>
</div>
</div>
</main>
</div>
</div>
{% endblock %}