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