14 lines
433 B
HTML
14 lines
433 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 %}
|
|
{% bootstrap_form password_set_form %}
|
|
<div class="form-actions">
|
|
<button class="btn btn-primary" type="submit" name="action" value="{% trans "Set Password" %}"/>Change Password</button>
|
|
</div>
|
|
</form>
|
|
{% endblock content %}
|