22 lines
637 B
HTML
22 lines
637 B
HTML
{% extends 'base_structure/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 'module_auth:login'%}">{% translate 'Log in' %}</a></p>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock content%}
|
|
|
|
{% block javascript %}
|
|
<!-- include required js cdn link through html here -->
|
|
|
|
{% endblock %}
|