{% extends "madga/site_base.html" %} {% load i18n %} {% block title %}{% trans "Sign up" %} ยท {{ site.name|default:"MADGA" }}{% endblock %} {% block content %}

{% trans "Create your account" %}

{% trans "Already have one?" %} {% trans "Sign in" %}

{% csrf_token %} {% comment %} Allauth renders a Django Form here. We style its fields with our madga-* primitives so it matches the studio look. {% endcomment %} {% for field in form %}
{{ field }} {% if field.help_text %}

{{ field.help_text|safe }}

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

{{ error }}

{% endfor %}
{% endfor %} {% if redirect_field_value %} {% endif %}

{% trans "By signing up you accept our" %} {% trans "terms" %} {% trans "and" %} {% trans "privacy policy" %}.

{% endblock %}