2016-07-19 14:35:08 +02:00
|
|
|
{% extends "zerver/portico.html" %}
|
2022-09-06 12:04:03 +02:00
|
|
|
|
|
|
|
{% block title %}
|
2024-05-11 01:21:38 +02:00
|
|
|
<title>{{ _("No organization found") }} | Zulip</title>
|
2022-09-06 12:04:03 +02:00
|
|
|
{% endblock %}
|
|
|
|
|
2016-07-19 14:35:08 +02:00
|
|
|
{% block portico_content %}
|
|
|
|
|
2024-05-11 01:21:38 +02:00
|
|
|
<div class="app find-account-page flex full-page account-creation">
|
2017-09-26 03:01:57 +02:00
|
|
|
<div class="inline-block new-style">
|
|
|
|
<div class="lead">
|
2024-05-11 01:21:38 +02:00
|
|
|
<h1 class="get-started">{{ _('No organization found') }}</h1>
|
2017-09-26 03:01:57 +02:00
|
|
|
</div>
|
2016-07-19 14:35:08 +02:00
|
|
|
|
2017-09-26 03:01:57 +02:00
|
|
|
<div class="app-main white-box">
|
2024-05-11 01:21:38 +02:00
|
|
|
<p>
|
|
|
|
{% trans %}There is no Zulip organization at <b>{{ current_url }}</b>.{% endtrans %}
|
|
|
|
<br />
|
2024-05-16 05:30:24 +02:00
|
|
|
{% if corporate_enabled %}
|
2024-05-11 01:21:38 +02:00
|
|
|
{% trans %}Please try a different URL, or <a href="mailto:{{ support_email }}">contact Zulip support</a>.{% endtrans %}
|
2024-05-16 05:30:24 +02:00
|
|
|
{% else %}
|
|
|
|
{% trans %}Please try a different URL, or <a href="mailto:{{ support_email }}">contact this Zulip server's administrators</a>.{% endtrans %}
|
2024-05-11 01:21:38 +02:00
|
|
|
{% endif %}
|
|
|
|
</p>
|
2017-09-26 03:01:57 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-07-19 14:35:08 +02:00
|
|
|
{% endblock %}
|