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