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

{{ _("Sign up for Zulip") }}

{% if realm_name %}
{{ realm_name }}
{{ realm_uri }}
{{ realm_description|safe }}

{{ _("You need an invitation to join this organization.") }}
{% endif %}
{% if no_auth_enabled %}

No authentication backends are enabled on this server yet, so it is impossible to register!

See the Zulip authentication documentation to learn how to configure authentication backends.

{% else %} {% if password_auth_enabled %}
{{ csrf_input }}
{% if form.email.errors %} {% for error in form.email.errors %} {% endfor %} {% endif %}
{% if page_params.external_authentication_methods|length > 0 %}
{{ _('OR') }}
{% endif %} {% endif %} {% for backend in page_params.external_authentication_methods %} {% endfor %} {% endif %}
{% endblock %}