Files
zulip/templates/zerver/unsubscribe_success.html
Lauryn Menard 94837d56cf templates: Add account-creation class to unsubscribe_success.html.
Adds the `account-creation` class to `<div>` tag in template so that
the associated CSS styles for `white-box p:last-of-type` and the
font-weight are applied.
2023-04-25 08:56:30 -07:00

39 lines
1.2 KiB
HTML

{% extends "zerver/portico.html" %}
{% block title %}
<title>{{ _("Email settings updated") }} | Zulip</title>
{% endblock %}
{% block portico_content %}
<div class="app portico-page">
<div class="app-main portico-page-container center-block flex full-page account-creation new-style">
<div class="inline-block">
<div class="get-started">
<h1>{{ _("Email settings updated") }}</h1>
</div>
<div class="white-box">
<p>
{% trans %}
You've successfully unsubscribed from Zulip {{ subscription_type }} emails for
<a href="{{ realm_uri }}">{{ realm_name }}</a>.
{% endtrans %}
</p>
{% if subscription_type != "welcome" %}
<p>
{% trans %}
You can undo this change or review your preferences in your
<a href="{{ realm_uri }}/#settings/notifications">notification settings</a>.
{% endtrans %}
</p>
{% endif %}
</div>
</div>
</div>
</div>
{% endblock %}