mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
Adds HTML title elements to templates that extend either `base.html`, `portico.html` or `portico_signup.html`, and that are not website portico landing pages that will use the `PAGE_TITLE` variable to set the HTML title element (see following commit in series). Also, updates some templates for missing translation tags. As a general rule, we want the title element (and page content) translated. Exceptions that are updated in this commit are templates used in the development environment, analytics templates that are used by staff and templates related to Zephyr.
25 lines
653 B
HTML
25 lines
653 B
HTML
{% extends "zerver/portico.html" %}
|
|
|
|
{% block title %}
|
|
<title>{{ _("Email changed") }} | Zulip</title>
|
|
{% endblock %}
|
|
|
|
{% block portico_content %}
|
|
|
|
<div class="app confirm-email-change-page flex full-page">
|
|
<div class="inline-block new-style">
|
|
<div class="lead">
|
|
<h1 class="get-started">{{ _('Email changed!') }}</h1>
|
|
</div>
|
|
|
|
<div class="app-main white-box">
|
|
{% trans %}
|
|
This confirms that the email address for your Zulip account has changed
|
|
from {{ old_email_html_tag }} to {{ new_email_html_tag }}
|
|
{% endtrans %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|