mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 13:33:24 +00:00
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>
18 lines
556 B
HTML
18 lines
556 B
HTML
{% extends "zerver/portico.html" %}
|
|
{% block portico_content %}
|
|
|
|
<div class="app find-account-page flex full-page">
|
|
<div class="inline-block new-style">
|
|
<div class="lead">
|
|
<h1 class="get-started">{{ _('Organization does not exist') }}…</h1>
|
|
</div>
|
|
|
|
<div class="app-main white-box">
|
|
{{ _('Hi there! Thank you for your interest in Zulip.') }}
|
|
<br />
|
|
{% trans %}There is no Zulip organization hosted at this subdomain.{% endtrans %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|