mirror of https://github.com/zulip/zulip.git
32 lines
802 B
HTML
32 lines
802 B
HTML
{% extends "zerver/emails/compiled/email_base_default.html" %}
|
|
|
|
{% block illustration %}
|
|
<img src="{{ email_images_base_uri }}/email_logo.png"/>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<p>{{ _('Hi!') }}
|
|
</p>
|
|
|
|
<p>
|
|
{% trans %}
|
|
We received a request to change the email address for the Zulip account on
|
|
{{ realm_uri }} from {{ old_email }} to {{ new_email }}. If you would like
|
|
to confirm this change, please click below:
|
|
{% endtrans %}
|
|
<a class="button" href="{{ activate_url }}">{{_('Confirm email change') }}</a>
|
|
</p>
|
|
|
|
<p>
|
|
{% trans %}
|
|
If you did not request this change, please contact us immediately at
|
|
<a href="mailto:{{ support_email }}">{{ support_email }}</a>.
|
|
{% endtrans %}
|
|
</p>
|
|
|
|
<p>
|
|
{{ _("Cheers,") }}<br />
|
|
{{ _("Team Zulip") }}
|
|
</p>
|
|
{% endblock %}
|