Back to Zulip

{{ _("Access forbidden (403)") }}

templates/4xx.html

12.0854 B
Original Source

{% extends "zerver/portico_error_pages/portico_error_page.html" %} {% block title %}

{{ _("Error") }} | Zulip{% endblock %} {% block error_page_content %}

{% if csrf_failure %}

{{ _("Access forbidden (403)") }}

{% trans %} Your request could not be completed because your browser did not send the credentials required to authenticate your access. To resolve this issue: {% endtrans %}

  1. {% trans %} Make sure that your browser allows cookies for this site. {% endtrans %}
  2. {% trans %} Check for any browser privacy settings or extensions that block Referer headers, and disable them for this site. {% endtrans %}

{% elif status_code == 405 %}

{{ _("Method not allowed (405)") }}

{% trans %} If this error is unexpected, you can contact support. {% endtrans %}

{% endif %}

{% endblock %}