templates/zerver/create_user/accounts_home.html
{% 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 %}
{% if realm_name %}
{{ realm_name }}
{{ realm_url }}
{{ 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 }} {{ _('Email') }}
{% if form.email.errors %} {% for error in form.email.errors %} {{ error }} {% endfor %} {% endif %} {{ _('Sign up') }} {% if external_authentication_methods|length > 0 %} {{ _('OR') }} {% endif %} {% endif %} {% for backend in external_authentication_methods %} {% if next %} {% endif %} {{ _('Sign up with %(identity_provider)s', identity_provider=backend.display_name) }} {% endfor %} {{ _('Already have an account?') }}{{ _('Log in') }} {% endif %}
{% endblock %}