{% extends "registration/base.html" %} {% load i18n %} {% block title %}{%trans 'Reset password'%}{% endblock %} {% block content %}

{% trans 'Reset your password'%}


{% blocktrans %}Forgot your password? Enter your email in the form below and we'll send you instructions for creating a new one.{% endblocktrans %}

{% csrf_token %}
    {% for field in form %}
  • {{ field }}
  • {% endfor %}
{% include 'registration/form_errors.html' %}
{% endblock %}