Restyle invalid organization page.

This restyles the `invalid_realm.html` template that displays when
a subdomain does not lead to a valid organization.

Fixes: #6667.
This commit is contained in:
Brock Whittaker
2017-09-25 18:01:57 -07:00
committed by Tim Abbott
parent ef4337edcb
commit b2c4a25a7b

View File

@@ -1,9 +1,17 @@
{% extends "zerver/portico.html" %}
{% block portico_content %}
<h3>{{ _('Organization does not exist') }}</h3>
<p>{{ _('Hi there! Thank you for your interest in Zulip.') }}</p>
<p>{% trans %}There is no Zulip organization hosted at this subdomain.{% endtrans %}</p>
<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 %}