{% extends 'accounts/base.html' %} {% block title %}Reset Password{% endblock title %} {% block content %}
{% if form.errors %}
{{form.errors.email}}
{% endif %}

Reset Password

{% csrf_token %}

{{form.email.label}} {{form.email}}

We will send you an email with password resetting option.

{% if not user.is_authenticated %}

Clicked by mistake? Go back to LogIn page.

{% endif %}
{% endblock content %} {% block scripts %} {% endblock scripts %}