9 lines
231 B
HTML
9 lines
231 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h2>Change Password</h2>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button type="submit">Change Password</button>
|
|
</form>
|
|
{% endblock %}
|