Coverage for templates / account / password_reset.html: 0%
9 statements
« prev ^ index » next coverage.py v7.13.2, created at 2026-03-10 14:10 +0000
« prev ^ index » next coverage.py v7.13.2, created at 2026-03-10 14:10 +0000
1{% extends '_base.html' %}
2{% load crispy_forms_tags %}
3{% load i18n %}
5{% block page_title %}{% trans "Password Reset" %}{% endblock %}
6{% block page_h2 %}{% trans "Password Reset" %}{% endblock %}
8{% block page_body %}
9<h3>{% trans "Forgot your password?" %> </h3>
10<form method="POST" action="{% url 'account_reset_password' %}" class="password_reset">
11 {% csrf_token %}
12 {{ form | crispy }}
13 <button class="btn btn-primary" type="submit">{% trans "Reset Password" %}</button>
14</form>
15{% endblock %}