zulip/templates/zerver/invalid_realm.html

23 lines
653 B
HTML

{% extends "zerver/portico.html" %}
{% block title %}
<title>{{ _("Organization does not exist") }} | Zulip</title>
{% endblock %}
{% 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 %}