{% extends "site_base.html" %}
{% load i18n %}
{% load bootstrap %}
{% block body_class %}account account-password-reset{% endblock %}
{% block head_title %}{% trans "Set your new password" %}{% endblock %}
{% block body %}
<form method="POST" action="{% url "account_password_reset_token" uidb36=uidb36 token=token %}">
<legend>{% trans "Set your new password" %}</legend>
<fieldset>
{% csrf_token %}
{{ form|bootstrap }}
<div class="form-actions">
<button>{% trans "Save" %}</button>
</div>
</fieldset>
</form>
{% endblock %}