mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
22 lines
734 B
HTML
22 lines
734 B
HTML
{% extends "account/base.html" %}
|
|
|
|
{% load i18n account crispy_forms_tags %}
|
|
|
|
{% block head_title %}{% trans "Password Reset" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>{% trans "Password Reset" %}</h1>
|
|
{% if user.is_authenticated %}
|
|
{% include "account/snippets/already_logged_in.html" %}
|
|
{% endif %}
|
|
|
|
<p>{% trans "Forgotten your password? Enter your e-mail address below, and we'll send you an e-mail allowing you to reset it." %}</p>
|
|
|
|
<form method="POST" action="{% url 'account_reset_password' %}" class="password_reset">
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
<input type="submit" class="btn btn-primary btn-block" value="{% trans 'Reset My Password' %}" />
|
|
</form>
|
|
{% endblock %}
|