mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-11 06:13:10 +00:00
19 lines
599 B
HTML
19 lines
599 B
HTML
{% extends "registration/registration_base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block page-title %}{% trans "Password reset complete" %}{% endblock page-title %}
|
|
|
|
{% block body-attrs %} class="standalone"{% endblock body-attrs %}
|
|
|
|
{% block content %}
|
|
{% url 'auth_login' as auth_login_url %}
|
|
<div class="{{ fobi_theme.custom_data.page_header_html_class }}">
|
|
<h1>{% trans "Password reset complete" %}</h1>
|
|
</div>
|
|
|
|
<p>{% trans "Your password has been reset!" %}</p>
|
|
<p>
|
|
{% blocktrans %}You may now <a href="{{ auth_login_url }}">log in</a>.{% endblocktrans %}
|
|
</p>
|
|
{% endblock content %}
|