summaryrefslogtreecommitdiff
path: root/web/templates/change-password/change_password.html
blob: d29c9014575b029c4e6b82acf9f53d826ec42e1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% 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 %}