khaganat-web/neluser/templates/neluser/password_reset.html
2020-02-28 19:06:37 +01:00

14 lines
418 B
HTML

{% extends "khaganat/centered_dialog.html" %}
{% load i18n %}
{% block title %}{% trans "password_reset"|capfirst %}{% endblock %}
{% block dialog_class %}is-link{% endblock %}
{% block dialog %}
<form method="post" action="{% url 'password_reset' %}">
{% csrf_token %}
{{ form.as_p }}
<button type="submit" class="button is-link">{% trans "reset_my_password"|capfirst %}</button>
</form>
{% endblock %}