mirror of https://github.com/zulip/zulip.git
30 lines
1.2 KiB
HTML
30 lines
1.2 KiB
HTML
{% extends "zerver/portico.html" %}
|
|
|
|
{% block title %}
|
|
<title>{{ _("No organization found") }} | Zulip</title>
|
|
{% endblock %}
|
|
|
|
{% block portico_content %}
|
|
|
|
<div class="app find-account-page flex full-page account-creation">
|
|
<div class="inline-block new-style">
|
|
<div class="lead">
|
|
<h1 class="get-started">{{ _('No organization found') }}</h1>
|
|
</div>
|
|
|
|
<div class="app-main find-account-page-container white-box">
|
|
<p>
|
|
{% trans %}There is no Zulip organization at <b>{{ current_url }}</b>.{% endtrans %}
|
|
</p>
|
|
<p>
|
|
{% if corporate_enabled %}
|
|
{% trans %}Please try a different URL, <a href="{{ root_domain_url }}/accounts/find/">get a list of your Zulip Cloud accounts</a>, or <a href="mailto:{{ support_email }}">contact Zulip support</a>.{% endtrans %}
|
|
{% else %}
|
|
{% trans %}Please try a different URL, <a href="{{ root_domain_url }}/accounts/find/">get a list of your accounts</a> on this server, or <a href="mailto:{{ support_email }}">contact this Zulip server's administrators</a>.{% endtrans %}
|
|
{% endif %}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|