{% extends "account/base.html" %} {% load widget_tweaks %} {% block head_title %}Sign up{% endblock %} {% block content %}
{% csrf_token %}

Sign up

{% for field in form.visible_fields %} {{ field|add_label_class:"font-semibold text-xs" }} {% if field.errors %} {% render_field field class="flex items-center w-64 h-12 px-4 pb-3 mt-2 border-red-500 rounded focus:outline-none focus:ring-2" %} {% else %} {% render_field field class="flex items-center w-64 h-12 px-4 pb-3 mt-2 rounded focus:outline-none focus:ring-2" %} {% endif %} {% for error in field.errors %} {{ error }} {% endfor %} {% endfor %} {% if redirect_field_value %} {% endif %}
Already have an account? Sign in.
{% endblock %}