{% extends "base.html" %} {% load static %} {% load i18n %} {% load allauth account %} {% block head_title %} {% trans "Forgot Password" %} {% endblock head_title %} {% block content %} {% trans "Forgot Password?" %} {% trans "Enter your email and we'll send you a link to reset your password." %} {% if user.is_authenticated %} {% include "account/snippets/already_logged_in.html" %} {% else %} {% url 'account_reset_password' as reset_url %} {% csrf_token %} {% trans "Email" %} {% trans "Send Reset Link" %} {% endif %} {% endblock content %} {% block extra_body %} {{ block.super }} {% endblock extra_body %}
{% trans "Enter your email and we'll send you a link to reset your password." %}