{% extends "zerver/portico_signup.html" %}
{% set entrypoint = "register" %}
{% block title %}
{{ _("Registration") }} | Zulip
{% endblock %}
{#
Gather other user information, after having confirmed
their email address.
Form is validated both client-side using jquery-validation (see signup.js) and server-side.
#}
{% block portico_content %}
{% if creating_new_realm %}
{{ _('Create your organization') }}
{% else %}
{{ _('Create your account') }}
{% endif %}
{% trans %}
Enter your account details to complete registration.
{% endtrans %}
{% if not creating_new_realm %}
{% include 'zerver/change_email_address_visibility_modal.html' %}
{% endif %}
{% endblock %}