{% extends "base.html" %} {% load i18n %} {% load widget_tweaks %} {% block title %}Reverie - {% trans "Reset Password" %}{% endblock %} {% block content %} {% trans "Reset password" as purpose %}

{{ purpose }}

{% if user.is_authenticated %}
You are already authenticated.
{% else %}

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

{% include "bulma_form.html" %}
{% endif %} {% endblock %}