im/users/templates/registration/password_change_form.html

14 lines
259 B
HTML
Raw Normal View History

2021-07-04 19:05:00 +00:00
{% extends 'inventory/base.html' %}
{% block content %}
<h2>Change Password</h2>
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Change">
</form>
<a href="{% url 'im:index' %}">Back to index</a>
{% endblock %}