diff options
Diffstat (limited to 'python/templates/registration/password_change_form.html')
-rw-r--r-- | python/templates/registration/password_change_form.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/python/templates/registration/password_change_form.html b/python/templates/registration/password_change_form.html new file mode 100644 index 0000000..7761fe4 --- /dev/null +++ b/python/templates/registration/password_change_form.html @@ -0,0 +1,13 @@ +{% extends 'layout/base.html' %} + +{% block title %}Change you password{% endblock %} + +{% block content %} + <h1>Change you password</h1> + <p>Use the form below to change your password.</p> + <form action="." method="post"> + {{ form.as_p }} + <p><input type="submit" value="Change"></p> + {% csrf_token %} + </form> +{% endblock %} |