regluit/frontend/templates/registration/password_reset_complete.html

16 lines
489 B
HTML

{% extends "registration/registration_base.html" %}
{% block title %}Password reset complete{% endblock %}
{% block doccontent %}
<div>
<h3>Password successfully reset!</h3>
</div>
<div>
{% if not request.user.is_authenticated %}
<a href="{{ login_url }}" class="nounderline"><div class="actionbutton">Log in</div></a>
{% else %}
<a href="/" class="nounderline"><div class="actionbutton">Back to my account</div></a>
{% endif %}
</div>
{% endblock %}