{% extends "base.html" %} {% load url from future %} {% load i18n %} {% block title %}Setting New password{% endblock %} {% block content %}

{% blocktrans %}Please enter your new password twice.{% endblocktrans %}
{% blocktrans %}So we can verify you typed it in correctly.{% endblocktrans %}

{% csrf_token %} {% for field in form %}
{{ field.errors }}
{{ field }}
{% endfor %}
{% endblock %}