mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 13:33:24 +00:00
The alt text of the leading images were displayed as preview content in inbox by email clients like gmail. Since the leading images were used mostly for decoration this made the preview content gibberish. It's fine to set the alt attributes to empty from accessibility point of view since the old alt attributes did't added any meaningful information.
17 lines
572 B
HTML
17 lines
572 B
HTML
{% extends "zerver/emails/compiled/email_base_default.html" %}
|
|
|
|
{% block illustration %}
|
|
<img src="{{ email_images_base_uri }}/email_logo.png" alt=""/>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<p>{{ _("Hi,") }}</p>
|
|
<p>
|
|
{% trans %}The email associated with your Zulip account was recently changed to <a href="{{ new_email }}">{{ new_email }}</a>. If you did not request this change, please contact us immediately at <a href="mailto:{{ support_email }}">{{ support_email }}</a>.{% endtrans %}
|
|
</p>
|
|
<p>
|
|
{{ _("Best,") }}<br />
|
|
{{ _("Team Zulip") }}
|
|
</p>
|
|
{% endblock %}
|