mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
24 lines
846 B
HTML
24 lines
846 B
HTML
{% extends "zerver/config_error/container.html" %}
|
||
|
||
{% block error_content %}
|
||
<p>
|
||
You attempted to use the <code>DevAuthBackend</code> authentication method,
|
||
which is used for logging in without a password in the Zulip development
|
||
environment.
|
||
</p>
|
||
<p>This backend is not available for this realm, either because:</p>
|
||
<ul>
|
||
<li>This Zulip server is configured as a production server.</li>
|
||
<li>
|
||
<code>DevAuthBackend</code> is disabled in
|
||
<code>AUTHENTICATION_BACKENDS</code> in
|
||
<code>{{ auth_settings_path }}</code>.
|
||
</li>
|
||
<li>
|
||
You disabled this authentication backend in
|
||
<a href="/help/configure-authentication-methods">this realm’s
|
||
authentication settings</a>.
|
||
</li>
|
||
</ul>
|
||
{% endblock %}
|