16 lines
531 B
HTML
16 lines
531 B
HTML
{% 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 %} |