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 %}
2021-09-24 18:02:32 +02:00
< p > {{ _("Thanks for your request!") }}< / p >
2021-09-15 15:29:15 +02:00
< p > {% trans %}Your email address {{ email }} has accounts with the following Zulip organizations hosted by < a href = "{{ external_host }}" > {{ external_host }}< / a > :{% endtrans %}< / p >
2018-04-26 17:30:31 +02:00
2021-09-15 15:29:15 +02:00
< ul >
{% for realm in realms %}
< li > < a href = "{{ realm.uri }}" > {{ realm.name }} ({{ realm.host }})< / a > < / li >
{% endfor %}
< / ul >
2017-01-05 03:42:53 +01:00
2023-10-17 00:47:21 +02:00
< p >
{% trans help_url="https://zulip.com/help/change-your-password#if-youve-forgotten-or-never-had-a-password" %}
If you have trouble logging in, you can < a href = "{{ help_url }}" > reset your password< / a > .
{% endtrans %}
< / p >
2017-01-05 03:42:53 +01:00
2018-04-26 17:30:31 +02:00
< p > {{ _("Thanks for using Zulip!") }}< / p >
2017-06-10 08:18:41 +02:00
{% endblock %}