mirror of
https://github.com/zulip/zulip.git
synced 2026-07-09 21:21:47 +08:00
This adds a web flow and management command for reactivating a Zulip organization, with confirmation from one of the organization administrators. Further work is needed to make the emails nicer (ideally, we'd send one email with all the admins on the `To` line, but the `send_email` library doesn't support that). Fixes #10783. With significant tweaks to the email text by tabbott.
15 lines
449 B
HTML
15 lines
449 B
HTML
{% extends "zerver/portico_signup.html" %}
|
|
|
|
{% 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>{{ _("The organization reactivation link has expired or is not valid.") }}</h1>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|