Implement Change Password form

This commit is contained in:
2021-11-09 14:50:57 +01:00
parent 95b0ff4933
commit 323e857aa5
6 changed files with 58 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
{% extends 'base.html' %}
{% load crispy_forms_tags %}
{% block content %}
<div class="container justify-content-center text-center">
<h1>Change Password</h1>
<div class="row justify-content-center">
<div class="col-lg-5">
<form method="post">
{% csrf_token %}
{{form|crispy}}
<input type="submit" name="submit-change-pw" class="form-control btn-primary" value="Change Password">
</form>
</div>
</div>
</div>
{% endblock content %}