{% extends 'paxalia/auth_base.html' %} {% load i18n %} {% block title %}{% trans "Forgot password" %} ยท {{ brand_name }}{% endblock %} {% block content %}

{% trans "Forgot password" %}

{% trans "Enter your email address. Django will handle the reset process without revealing whether an account exists." %}

{% csrf_token %} {{ form.non_field_errors }}
{{ form.email }}{% for error in form.email.errors %}
{{ error }}
{% endfor %}

{% trans "Back to login" %}

{% endblock %}