{% extends "zerver/portico_signup.html" %} {# Home page for not logged-in users. #} {% block title %} {{ _("Create a new organization") }} | Zulip {% endblock %} {# This is where we pitch the app and solicit signups. #} {% block portico_content %}

{{ _("Create a new Zulip organization") }}

{{ csrf_input }} {% include 'zerver/realm_creation_form.html' %}
{% if form.email.errors %} {% for error in form.email.errors %}
{{ error }}
{% endfor %} {% endif %}
{% if has_captcha %} {% if form.captcha.errors %} {% for error in form.captcha.errors %}

{{ error }}

{% endfor %} {% endif %} {{ form.captcha }} {% endif %}
{% if not is_realm_import_enabled %}
{% trans %} Or import from Slack, Mattermost, or Rocket.Chat. {% endtrans %}
{% endif %}
{% endblock %}