{% extends 'base.html' %} {% load i18n %} {% load widget_tweaks %} {% block title %}Password reset{% endblock %} {% block content %}

Password Reset

{% trans "Forgotten your password? Enter your e-mail address below, and we'll e-mail instructions for setting a new one." %}

{% csrf_token %} {% if form.errors %} {% include 'form_errors.html' %} {% endif %}
{% render_field form.email type="email" class+="form-control" %}
{{ form.captcha }}
{% endblock %}