{% extends "base.html" %} {% load i18n %} {% block head_title %}Create Account{% endblock %} {% block content %}

Create your account

Already have an account? Sign in

{% if SOCIALACCOUNT_ENABLED %} {% include "account/snippets/social_buttons.html" with process="signup" verb="Sign up" %} {% endif %} {% if PASSKEY_SIGNUP_ENABLED %} Sign up with a passkey {% endif %}
{% csrf_token %} {% for field in form %}
{{ field }} {% if field.help_text %}

{{ field.help_text }}

{% endif %} {% if field.errors %} {% for error in field.errors %}

{{ error }}

{% endfor %} {% endif %}
{% endfor %} {% if form.non_field_errors %}
{% for error in form.non_field_errors %}

{{ error }}

{% endfor %}
{% endif %}

By creating an account you agree to our Terms of Service and Privacy Policy.

{% endblock %}