zulip/templates/zerver/invalid_realm.html
Steve Howell cf78cb0d6e templates: Use <hr> and <br> consistently.
We now prevent these variations:

    * <hr/>
    * <hr />
    * <br/>
    * <br />

We could enforce similar consistency for other void
tags, if we wished, but these two are particularly
prevalent.
2020-04-28 17:05:48 -07:00

18 lines
554 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 %}