{% extends "zerver/portico.html" %} {% block portico_content %}

{{ _("Find your team") }}…

{% if emails %}

Emails sent! You will only receive emails at addresses associated with Zulip organizations. The addresses entered on the previous page are listed below:

    {% for email in emails %}
  • {{ email }}
  • {% endfor %}
{% if development_environment %}
{{ _("In the Zulip development environment, outgoing emails are printed to the run-dev.py console") }}
{% endif %}
{% else %}

We will send you an email with the sign-in information for any Zulip organization(s) associated with the addresses you enter below.

{{ csrf_input }}
{{ form.emails.help_text }}
{% if form.emails.errors %} {% for error in form.emails.errors %}
{{ error }}
{% endfor %} {% endif %}
{% endif %}
{% endblock %}