{% extends "account/base_entrance.html" %}
{% load i18n account %}
{% block title %}
{% trans "Password reset" %}
{% endblock title %}
{% block content %}
{% if user.is_authenticated %}
{% include "account/snippets/already_logged_in.html" %}
{% endif %}
{% trans "Forgotten your password? Enter your email address below, and we'll send you an email allowing you to reset it." %}
{% url 'account_reset_password' as reset_url %}
{{ redirect_field }}
{% endblock content %}