2023-04-05 11:19:58 +02:00
{% extends "zerver/emails/email_base_default.html" %}
2017-06-10 08:18:41 +02:00
2017-08-16 12:10:55 +02:00
{% block illustration %}
2023-04-26 01:47:00 +02:00
< img src = "{{ email_images_base_url }}/email_logo.png" alt = "" / >
2017-08-16 12:10:55 +02:00
{% endblock %}
2017-06-10 08:18:41 +02:00
{% block content %}
2024-02-01 17:39:42 +01:00
{% if account_found %}
2021-09-24 18:02:32 +02:00
< p > {{ _("Thanks for your request!") }}< / p >
2024-02-12 20:33:38 +01:00
{% if corporate_enabled %}
< p > {% trans %}Your email address {{ email }} has accounts with the following Zulip Cloud organizations:{% endtrans %}< / p >
{% else %}
< p > {% trans %}Your email address {{ email }} has accounts with the following Zulip organizations hosted by {{ external_host }}:{% endtrans %}< / p >
{% endif %}
2018-04-26 17:30:31 +02:00
2021-09-15 15:29:15 +02:00
< ul >
{% for realm in realms %}
2024-05-06 15:27:22 +02:00
< li > < a href = "{{ realm.url }}" > {{ realm.name }} ({{ realm.host }})< / a > < / li >
2021-09-15 15:29:15 +02:00
{% endfor %}
< / ul >
2017-01-05 03:42:53 +01:00
2023-10-17 00:47:21 +02:00
< p >
2024-02-12 20:33:38 +01:00
{% trans %}If you have trouble logging in, you can < a href = "{{ help_reset_password_link }}" > reset your password< / a > .{% endtrans %}
2023-10-17 00:47:21 +02:00
< / p >
2024-02-01 17:39:42 +01:00
{% else %}
< p >
{{ _("You have requested a list of Zulip accounts for this email address.") }}
{% if corporate_enabled %}
{{ _("Unfortunately, no Zulip Cloud accounts were found.") }}
{% else %}
{% trans%}Unfortunately, no accounts were found in Zulip organizations hosted by {{external_host}}.{% endtrans %}
{% endif %}
< / p >
2017-01-05 03:42:53 +01:00
2024-02-01 17:39:42 +01:00
< p >
{% trans %}You can < a href = "{{ find_accounts_link }}" > check for accounts< / a > with another email, or < a href = "{{ help_logging_in_link }}" > try another way< / a > to find your account.{% endtrans %}
{{ _("If you do not recognize this request, you can safely ignore this email.") }}
< / p >
{% endif %}
2017-06-10 08:18:41 +02:00
{% endblock %}