Files
zulip/templates/zerver/deactivated.html
Aman Agrawal 63613051ac deactivated_org: Direct org members to contact org admins.
This helps clarify that normal members cannot reactivate the
org by contacting us.
2025-09-24 12:02:56 -07:00

72 lines
3.3 KiB
HTML

{% extends "zerver/portico_signup.html" %}
{% block title %}
<title>{{ _("Deactivated organization") }} | Zulip</title>
{% endblock %}
{% 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">
{% if deactivated_redirect %}
<h1>{{ _("Organization moved") }}</h1>
{% else %}
<h1>{{ _("Deactivated organization") }}</h1>
{% endif %}
</div>
<div class="white-box deactivated-realm-container">
<p>
{% if deactivated_redirect %}
{% trans %}
This organization has moved to <a href="{{ deactivated_redirect }}">{{ deactivated_redirect }}</a>.
{% endtrans %}
{% if auto_redirect_to %}
{% trans %}
This page will automatically redirect to the <a href="{{ auto_redirect_to }}" id="deactivated-org-auto-redirect">new URL</a> in <span id="deactivated-org-auto-redirect-countdown">5</span> seconds.
{% endtrans %}
{% endif %}
{% elif realm_data_deleted %}
{{ _("This organization has been deactivated, and all organization data has been deleted.") }}
{% if corporate_enabled %}
{% trans %}
You can <a href="mailto:{{ support_email }}">contact Zulip support</a> to inquire about reusing this URL for a new organization.
{% endtrans %}
{% else %}
{% trans %}
You can <a href="mailto:{{ support_email }}">contact this Zulip server's administrators</a> to inquire about reusing this URL for a new organization.
{% endtrans %}
{% endif %}
{% else %}
{{ _("This organization has been deactivated.") }}
{% if corporate_enabled %}
{% trans %}
If you are an owner of this organization, you can <a href="mailto:{{ support_email }}">contact Zulip support</a> to reactivate it.
{% endtrans %}
<br /><br />
{% trans %}
If you're a member of the organization and want information about why it has been deactivated, please reach out to the organization's administrators directly.
{% endtrans %}
{% else %}
{% trans %}
If you are an owner of this organization, you can <a href="mailto:{{ support_email }}">contact this Zulip server's administrators</a> to reactivate it.
{% endtrans %}
{% endif %}
{% endif %}
</p>
</div>
</div>
</div>
</div>
{% endblock %}