{% extends "djust_auth/layouts/auth.html" %}{% load djust_auth %} {% block title %}Choose a new password{% endblock %} {% block card %}{% auth_context as auth %}

Choose a new password

{% auth_errors form %}
{% csrf_token %} {% for field in form.visible_fields %}{% if field.name == "code" %}{% auth_code_input field %}{% else %}{% auth_field field %}{% endif %}{% endfor %}{% for h in form.hidden_fields %}{{ h }}{% endfor %} {% if auth.next %}{% endif %}
{% auth_links auth %} {% endblock %}