Back to Zulip

{{ _("Find your Zulip accounts") }}

templates/zerver/find_account.html

12.01.3 KB
Original Source

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

{{ _("Find your accounts") }} | Zulip{% endblock %} {% block portico_content %}

{{ _("Find your Zulip accounts") }}

{% if emails %}

{% trans %} Emails sent! The addresses entered on the previous page are listed below: {% endtrans %}

{% for email in emails %} - {{ email }} {% endfor %} {% trans %} If you don't receive an email, you can find accounts for another email address. {% endtrans %} {% include 'zerver/dev_env_email_access_details.html' %} {% else %}

{% if corporate_enabled %} {% trans %}Enter your email address to receive an email with the URLs for all the Zulip Cloud organizations in which you have active accounts.{% endtrans %} {% else %} {% trans %}Enter your email address to receive an email with the URLs for all the Zulip organizations on this server in which you have active accounts.{% endtrans %} {% endif %} {% trans %}If you have also forgotten your password, you can reset it.{% endtrans %}

{{ csrf_input }}

{{ _('Email address') }} {{ _('Find accounts') }}

{{ form.emails.help_text }}

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

{% endblock %}