{% extends "traxauth/base.html" %} {% load i18n %} {% block title %}{% trans "Reset password" %}{% endblock %} {% block breadcrumbs-box %} {{ block.super }} › {% trans "Reset password" %} {% endblock %} {% block coltype %}login{% endblock %} {% block content_title %}

{% trans "Reset password" %}

{% endblock %} {% block content %}
{% if user.is_authenticated %}

{% trans "You are already logged in as" %} {{ user.username }}

{% trans "Logout" %}

{% else %}
{% csrf_token %}

{% trans "Please enter the email address that is associated with your account. Further instructions on how to reset your password will be emailed to you." %}

{{ form.as_p }}

{% endif %}
{% endblock %}