2023-04-05 11:19:58 +02:00
{% extends "zerver/emails/email_base_default.html" %}
2017-05-14 15:02:49 +02:00
2018-12-20 09:44:18 +01:00
{% block illustration %}
2020-01-24 08:30:26 +01:00
< img src = "{{ email_images_base_uri }}/email_logo.png" alt = "" / >
2018-12-20 09:44:18 +01:00
{% endblock %}
2017-05-14 15:02:49 +02:00
{% block content %}
2018-12-20 09:44:18 +01:00
< p >
2020-10-26 08:58:56 +01:00
{% trans email=macros.email_tag(email), realm_uri=macros.link_tag(realm_uri) %}Somebody (possibly you) requested a new password for the Zulip account {{ email }} on {{ realm_uri }}.{% endtrans %}
2018-12-20 09:44:18 +01:00
< / p >
2018-08-14 22:06:47 +02:00
{% if active_account_in_realm %}
< p >
2018-12-20 09:44:18 +01:00
{{ _('Click the button below to reset your password.') }}
2018-12-18 11:08:51 +01:00
< a class = "button" href = "{{ reset_url }}" > {{ _("Reset password") }}< / a >
2018-08-14 22:06:47 +02:00
< / p >
{% else %}
< p >
2018-08-16 18:10:11 +02:00
{% if user_deactivated %}
2020-10-27 14:00:10 +01:00
{% trans organization_url=macros.link_tag(realm_uri), help_link=realm_uri + "/help/deactivate-or-reactivate-a-user" %}You previously had an account on {{ organization_url }}, but it has been deactivated. You can contact an organization administrator to < a href = "{{ help_link }}" > reactivate your account< / a > .{% endtrans %}
2018-08-16 18:10:11 +02:00
{% else %}
2019-02-08 10:53:01 +01:00
{% trans %}You do not have an account in that Zulip organization.{% endtrans %}
2018-08-16 18:10:11 +02:00
{% endif %}
< / p >
< p >
2018-08-18 00:38:28 +02:00
{% if active_accounts_in_other_realms %}
2018-12-18 11:08:51 +01:00
{{ _("You do have active accounts in the following organization(s).") }}
< ul >
{% for active_account in active_accounts_in_other_realms %}
< li > {{ active_account.realm.uri }}< / li >
{% endfor %}
< / ul >
2019-02-08 10:53:01 +01:00
{% trans %}You can try logging in or resetting your password in the organization(s) above.{% endtrans %}
2017-08-11 07:55:51 +02:00
{% endif %}
2018-08-14 22:06:47 +02:00
< / p >
2017-05-14 15:02:49 +02:00
{% endif %}
2018-12-20 09:44:18 +01:00
2019-02-08 10:53:01 +01:00
< p >
{% trans %}If you do not recognize this activity, you can safely ignore this email.{% endtrans %}
< / p >
2017-05-14 15:02:49 +02:00
{% endblock %}