{% extends "base.html" %} {% block title %}Register{% if app_name %} for {{ app_name }}{% endif %} — allowthem{% endblock %} {% block body %}
{% if logo_url and logo_url is startingwith("https://") %} {{ app_name }} {% endif %}

Create an account{% if app_name %} for {{ app_name }}{% endif %}

{% if error %}
{{ error }}
{% endif %}
{% if custom_fields %} {% for field in custom_fields %}
{% if field.field_type == "textarea" %} {% elif field.field_type == "select" %} {% elif field.field_type == "checkbox" %}
{% if field.help_text %} {{ field.help_text }} {% endif %}
{% elif field.field_type == "number" %} {% else %} {% endif %} {% if field.help_text and field.field_type != "checkbox" %}

{{ field.help_text }}

{% endif %}
{% endfor %} {% endif %}

Already have an account? Sign in

{% endblock %}