zulip/templates/zerver/unsubscribe_success.html
Tim Abbott b3dd6e7c4c unsubscribe: Fix styling of unsubscribe page.
This was apparently one of our few portico pages that never got the
white-box migration.

I did a bit of copyediting while looking at this page as well.
2021-04-27 21:36:09 -07:00

34 lines
978 B
HTML

{% extends "zerver/portico.html" %}
{% block portico_content %}
<div class="app portico-page">
<div class="app-main portico-page-container center-block flex full-page 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.
{% endtrans %}
</p>
<p>
{% trans %}
You can undo this change or review your
preferences in your
<a href="{{ realm_uri }}/#settings/notifications">Zulip notification
settings</a>.
{% endtrans %}
</p>
</div>
</div>
</div>
</div>
{% endblock %}