2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-20 05:46:34 +00:00

remove unneeded override

This commit is contained in:
Matthias
2021-09-07 22:38:01 +02:00
parent dbc58b299c
commit b281241607
3 changed files with 2 additions and 31 deletions

View File

@ -1,21 +0,0 @@
{% extends "account/base.html" %}
{% load i18n crispy_forms_tags inventree_extras %}
{% block head_title %}{% trans "Change Password" %}{% endblock %}
{% block content %}
{% settings_value 'LOGIN_ENABLE_PWD_FORGOT' as enable_pwd_forgot %}
<h1>{% trans "Change Password" %}</h1>
<form method="POST" action="{% url 'account_change_password' %}" class="password_change">
{% csrf_token %}
{{ form|crispy }}
<button type="submit" class="btn btn-primary" name="action">{% trans "Change Password" %}</button>
{% if enable_pwd_forgot %}
<a href="{% url 'account_reset_password' %}">{% trans "Forgot Password?" %}</a>
{% endif %}
</form>
{% endblock %}