timetracker/templates/registration/password_change_form.html
2021-02-04 21:27:04 -07:00

13 lines
285 B
HTML

{% extends 'application.html' %}
{% block content %}
<section class="panel">
<form method="post" action="{% url 'password_change' %}">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Change my password">
</form>
</section>
{% endblock %}