Files
zulip/templates/zerver/invalid_realm.html
Brock Whittaker b2c4a25a7b 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.
2017-09-26 16:59:03 -07:00

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 %}