2015-01-17 23:08:41 +01:00
|
|
|
{% extends "account/base.html" %}
|
|
|
|
{% load i18n crispy_forms_tags %}
|
|
|
|
|
2023-04-16 22:11:32 +02:00
|
|
|
{% block title %}{{ block.super }} - {% translate "Set Password" %}{% endblock title %}
|
|
|
|
{% block page_title %}{% translate "Set Password" %}{% endblock page_title %}
|
2015-01-17 23:08:41 +01:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<form method="POST" action="{% url 'account_set_password' %}" class="password_set">
|
|
|
|
{% csrf_token %}
|
|
|
|
{{ form | crispy }}
|
2023-04-16 22:11:32 +02:00
|
|
|
<input class="btn btn-primary" type="submit" name="action" value="{% translate "Set Password" %}"/>
|
2015-01-17 23:08:41 +01:00
|
|
|
</form>
|
|
|
|
{% endblock %}
|