register: Update UI of realm_creation_fail page.

This commit is contained in:
Akash Nimare
2018-07-30 04:41:10 +05:30
committed by Tim Abbott
parent 6a4bacbd18
commit e9e5a722c5

View File

@@ -1,11 +1,28 @@
{% extends "zerver/portico.html" %} {% 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 %} {% block portico_content %}
<br/> {% include 'zerver/landing_nav.html' %}
<p class="lead">{{ message }}</p>
<p>{{ _('This server does not allow members of the public to create new organizations.') }}</p> <div class="portico-landing why-page">
<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 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 %} {% endblock %}