mirror of https://github.com/zulip/zulip.git
36 lines
1.2 KiB
HTML
36 lines
1.2 KiB
HTML
{% extends "zerver/portico.html" %}
|
|
{% set entrypoint = "landing-page" %}
|
|
|
|
{% block title %}
|
|
<title>{{ _("Error creating new organization") }} | Zulip</title>
|
|
{% endblock %}
|
|
|
|
{% block customhead %}
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
{% endblock %}
|
|
|
|
{% block portico_content %}
|
|
|
|
{% include 'zerver/landing_nav.html' %}
|
|
|
|
<div class="portico-landing why-page">
|
|
<div class="hero small-hero">
|
|
<h1 class="center">{{ message }}</h1>
|
|
</div>
|
|
<div class="main">
|
|
<div class="padded-content">
|
|
<div class="inner-content">
|
|
<p>{{ _('This server does not allow members of the public to create new organizations.') }}</p>
|
|
<p>
|
|
{% trans zulip_cloud_link="https://zulip.com",production_install_url="https://zulip.readthedocs.io/en/stable/production/install.html" %}
|
|
Zulip is open source, so you can <a href="{{ production_install_url}}">install your own Zulip server</a> or create a new organization on
|
|
<a href="{{ zulip_cloud_link }}">Zulip Cloud</a>
|
|
{% endtrans %}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|