{% extends "base_auth.html" %} {% block title %}Choose New Password{% endblock %} {% block left_heading %}Choose new password{% endblock %} {% block left_subtext %}Create a new secure password for your account{% endblock %} {% block content %}

Reset Password

Enter your new password

{% csrf_token %} {{ form.non_field_errors }}
{{ form.new_password1.label_tag }} {{ form.new_password1 }} {% if form.new_password1.errors %}
{{ form.new_password1.errors }}
{% endif %}
{{ form.new_password2.label_tag }} {{ form.new_password2 }} {% if form.new_password2.errors %}
{{ form.new_password2.errors }}
{% endif %}
Back to Login
{% endblock %}