{% extends 'base.html' %} {% load i18n cashbook_extras %} {% block content %}
{% csrf_token %}

{% trans "Reset password" %}

{% trans "Enter your account email to receive a reset link." %}

{% if form.errors %}

{% trans "Please enter a valid email" %}

{% endif %}
{{ form.email|add_class:'input' }} {% if form.email.errors %}
{{ form.email.errors|striptags }}
{% endif %}
{% endblock %}