{% extends "base.html" %} {% block title %}Create Account{% endblock %} {% block content %}
{% csrf_token %}
Create An Account {% if config.signup_text %}{{ config.signup_text|safe|linebreaks }}{% endif %} {% if config.signup_allowed %} {% for field in form %} {% include "forms/_field.html" %} {% endfor %} {% else %} {% if not config.signup_text %}

Not accepting new users at this time

{% endif %} {% endif %}
{% if config.signup_allowed %}
{% endif %}
{% endblock %}