Files
zulip/templates/zerver/deactivated.html
Anders Kaseorg dd3fa4ac52 templates: Mark all void tags as self-closing.
This reverses the policy that was set, but incompletely enforced, by
commit 951514dd7d.  The self-closing tag
syntax is clearer, more consistent, simpler to parse, compatible with
XML, preferred by Prettier, and (most importantly now) required by
FormatJS.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
2021-04-21 09:49:34 -07:00

40 lines
1.3 KiB
HTML

{% extends "zerver/portico_signup.html" %}
{% block customhead %}
{{ super() }}
<meta http-equiv="refresh" content="60;URL='/'" />
{% 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>{{ _("Deactivated organization") }}</h1>
</div>
<div class="white-box deactivated-realm-container">
<p>
{% trans %}
The organization you are trying to join, {{ deactivated_domain_name }}, has been deactivated.
{% endtrans %}
{% if deactivated_redirect %}
{% trans %}
It has moved to <a href="{{ deactivated_redirect }}">{{ deactivated_redirect }}</a>.
{% endtrans %}
{% endif %}
{% trans %}
Please contact <a href="mailto:{{ support_email }}">{{ support_email }}</a> to reactivate
this group.
{% endtrans %}
</p>
</div>
</div>
</div>
</div>
{% endblock %}