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

{% trans "Choose a new password" %}

{% trans "Use a strong password and follow your Django password validators." %}

{% if validlink %}
{% csrf_token %}{% if form.non_field_errors %}{% endif %}{% for field in form %}
{{ field }}
{% if field.help_text %}
{{ field.help_text|safe }}
{% endif %}{% for error in field.errors %}
{{ error }}
{% endfor %}
{% endfor %}
{% else %}

{% trans "Request a new link" %}

{% endif %}
{% endblock %}