templates: Move remote_realm_server_mismatch_error.html to zerver.

This is rendered by regular self-hosted servers, so doesn't belong in
zilencer.
This commit is contained in:
Mateusz Mandera
2024-01-10 15:50:30 +01:00
committed by Tim Abbott
parent fc247cba3f
commit 100cef9186
2 changed files with 1 additions and 1 deletions

View File

@@ -1,31 +0,0 @@
{% extends "zerver/portico.html" %}
{% block title %}
<title>{{ _("Error") }} | Zulip</title>
{% endblock %}
{% block portico_class_name %}error{% endblock %}
{% block portico_content %}
<div class="error_page">
<div class="container">
<div class="row-fluid">
<img src="{{ static('images/errors/400art.svg') }}" alt=""/>
<div class="errorbox">
<div class="errorcontent">
<h1 class="lead">{{ _("Unexpected Zulip server registration") }}</h1>
<p>
{% trans %}
Your Zulip organization is registered as associated with a
different Zulip server installation.
Please <a href="mailto:{{ support_email }}">contact Zulip support</a>
for assistance in resolving this issue.
{% endtrans %}
</p>
</div>
</div>
</div>
</div>
</div>
{% endblock %}