{% extends "account/base.html" %} {% load i18n account crispy_forms_tags inventree_extras %} {% block head_title %}{% trans "Password Reset" %}{% endblock %} {% block content %} {% settings_value 'LOGIN_ENABLE_PWD_FORGOT' as enable_pwd_forgot %} {% mail_configured as mail_conf %}

{% trans "Password Reset" %}

{% if user.is_authenticated %} {% include "account/snippets/already_logged_in.html" %} {% endif %} {% if mail_conf and enable_pwd_forgot %}

{% trans "Forgotten your password? Enter your email address below, and we'll send you an email allowing you to reset it." %}

{% csrf_token %} {{ form|crispy }}
{% else %}

{% trans "This function is currently disabled. Please contact an administrator." %}

{% endif %} {% endblock %}