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

22 lines
619 B
HTML

{% extends 'layout/base_authentication_template.html' %}
{% load i18n static %}
{% block content %}
<div class="card mt-3 mb-3">
<div class="card-header">
<h3 class="text-center font-weight-light my-4">Password Reset Success</h3>
</div>
<div class="card-body">
<p>{% translate "Your password has been set. You may go ahead and log in now." %}</p>
<p><a class="btn btn-primary" href="{% url 'accounts:login'%}">{% translate 'Log in' %}</a></p>
</div>
</div>
{% endblock content%}
{% block javascript %}
<!-- include required js cdn link through html here -->
{% endblock %}