{% extends "account/base.html" %} {% load static i18n account %} {% load crispy_forms_tags %} {% block title %}{% trans "BuildBlock | Password Reset" %}{% endblock %} {% block content %}

{% trans "Reset password" %}

{% trans "Enter your email address and we'll send you an email with instructions to reset your password." %}

{% if user.is_authenticated %} {% include "account/snippets/already_logged_in.html" %} {% endif %}
{% csrf_token %} {{ form|crispy }}
{% endblock content %} {% block more_action %}

{% trans "Back to Sign in" %}

{% endblock more_action %}