2017-09-26 01:41:15 +02:00
|
|
|
{% extends "zerver/emails/compiled/email_base_default.html" %}
|
2017-05-14 15:02:49 +02:00
|
|
|
|
2018-12-20 09:44:18 +01:00
|
|
|
{% block illustration %}
|
|
|
|
<img src="{{ email_images_base_uri }}/email_logo.png"/>
|
|
|
|
{% endblock %}
|
|
|
|
|
2017-05-14 15:02:49 +02:00
|
|
|
{% block content %}
|
2018-12-20 09:44:18 +01:00
|
|
|
<p>
|
|
|
|
{% trans %}
|
|
|
|
Somebody (possibly you) requested a new password for the Zulip account {{ email }} on {{ realm_uri }}.
|
|
|
|
{% endtrans %}
|
|
|
|
</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 %}
|
2018-12-18 11:08:51 +01:00
|
|
|
{% trans %}
|
2018-12-20 09:44:18 +01:00
|
|
|
You previously had an account on {{ realm_uri }}, but it has been deactivated.
|
|
|
|
You can contact an organization administrator to
|
|
|
|
<a href="{{ realm_uri }}/help/deactivate-or-reactivate-a-user">reactivate your account</a>.
|
2018-12-18 11:08:51 +01:00
|
|
|
{% endtrans %}
|
2018-08-16 18:10:11 +02:00
|
|
|
{% else %}
|
2018-12-18 11:08:51 +01:00
|
|
|
{% trans %}
|
2018-12-20 09:44:18 +01:00
|
|
|
You do not have an account in that Zulip organization.
|
2018-12-18 11:08:51 +01:00
|
|
|
{% 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>
|
|
|
|
{% trans %}
|
2018-12-20 09:44:18 +01:00
|
|
|
You can try logging in or resetting your password in the organization(s) above.
|
2018-12-18 11:08:51 +01:00
|
|
|
{% 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
|
|
|
|
|
|
|
{% trans %}
|
|
|
|
If you do not recognize this activity, you can safely ignore this email.
|
|
|
|
{% endtrans %}
|
2017-05-14 15:02:49 +02:00
|
|
|
{% endblock %}
|