{% extends "base.html" %} {% load i18n %} {% load widget_tweaks %} {% load static %} {% block title %}{% trans "Set your password" %}{% endblock %} {% block content %}

Welcome, please set your password.

{% csrf_token %}

{{ form.new_password1 }} {% include 'components/form_field_errors.html' with field=form.new_password1 %}

{{ form.new_password2 }} {% include 'components/form_field_errors.html' with field=form.new_password1 %}
{{ form.uuid }}
{% endblock %}