23 lines
531 B
HTML
23 lines
531 B
HTML
{% extends 'base.html' %}
|
|
{% block style %}
|
|
form { display: table; }
|
|
p { display: table-row; }
|
|
label { display: table-cell; }
|
|
input { display: table-cell; }
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="jumbotron">
|
|
<div class="container">
|
|
<h1 class="display-3">Password Change</h1>
|
|
</div>
|
|
</div>
|
|
<div class="container">
|
|
<p><p><p>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button type="submit">Change Password</button>
|
|
</form>
|
|
</div>
|
|
{% endblock %} |