{% extends "base-apply.html" %} {% load i18n %} {% block title %}{% trans "Reset password" %}{% endblock %} {% block body_class %}bg-white{% endblock %} {% block content %}
{% if form.non_field_errors %}
    {% for error in form.non_field_errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}

{% trans "Forgot password?" %}

{% trans "Please enter your user account's email address and we will send you a password reset link." %}

{% csrf_token %}

{{ form.email.label_tag }}

{{ form.email }}

{% endblock %}