{% 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 }} {% trans "Email address" %}{{ form.email }}{% for error in form.email.errors %}{{ error }}{% endfor %} {% trans "Send reset link" %} {% trans "Back to login" %} {% endblock %}
{% trans "Enter your email address. Django will handle the reset process without revealing whether an account exists." %}
{% trans "Back to login" %}