15 lines
404 B
HTML
15 lines
404 B
HTML
{% extends '_base.html' %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block title %}Set Password{% endblock title %}
|
|
|
|
{% block content %}
|
|
<form method="POST" action="" class="password_set">
|
|
{% csrf_token %}
|
|
{{ form | crispy }}
|
|
<div class="form-actions">
|
|
<button class="btn btn-primary" type="submit" name="action" value="Set Password">Change
|
|
Password</button>
|
|
</div>
|
|
</form>
|
|
{% endblock content %}
|