{% extends "base.html" %} {% load static %} {% load i18n %} {% load allauth account %} {% block head_title %} {% trans "Set Password" %} {% endblock head_title %} {% block content %} {% trans "Set Password" %} {% url 'account_set_password' as action_url %} {% csrf_token %} {{ redirect_field }} {% for field in form.visible_fields %} {{ field.label_tag }} {{ field }} {% if field.help_text %} {{ field.help_text }} {% endif %} {% for error in field.errors %} {{ error }} {% endfor %} {% endfor %} {% trans 'Set Password' %} {% endblock content %} {% block extra_body %} {{ block.super }} {% endblock extra_body %}