{% extends "base.html" %} {% block body %}
{% if validlink %} {% trans "Please enter your new password twice so we can verify you typed it in correctly." as headingtext %} {% include "patterns/basics/headings/sp_variations/heading.html" with type="subheading" htmltag="h3" title=headingtext %}
{% csrf_token %}
{{ form.new_password1 }} {{ form.new_password1.errors }}
{{ form.new_password2 }} {{ form.new_password2.errors }}
{% else %} {% trans "The password reset link was invalid, possibly because it has already been used. Please request a new password reset." as headingtext %} {% include "patterns/basics/headings/sp_variations/heading.html" with type="macro" htmltag="h4" title=headingtext %} {% endif %}
{% endblock %}