16 lines
249 B
HTML
16 lines
249 B
HTML
{% extends 'base.html' %}
|
|
{% load static %}
|
|
|
|
{% block core_content %}
|
|
|
|
|
|
<h4>Please change your password</h4>
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
|
|
{% endblock %} |