zulip/templates/zerver/realm_creation_failed.html

29 lines
879 B
HTML
Raw Normal View History

{% extends "zerver/portico.html" %}
{% block customhead %}
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{{ render_bundle('landing-page') }}
{% 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 is open source, so you can install your own Zulip server by following the instructions on
<a href="https://www.zulip.org/">www.zulip.org</a>{% endtrans %}</p>
</div>
</div>
</div>
</div>
{% endblock %}