timetracker/templates/registration/password_change_form.html
2021-02-04 22:00:48 -07:00

15 lines
376 B
HTML

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