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 %}