{% extends "sentry/bases/modal.html" %} {% load i18n %} {% block title %}{% trans "CSRF Verification Failed" %} | {{ block.super }}{% endblock %} {% block main %}

{% trans "A required security token was not found or was invalid." %}

{% trans "If you're continually seeing this issue, try the following:" %}

  1. {% trans "Clear cookies (at least for Sentry's domain)." %}
  2. {% trans "Reload the page you're trying to submit (don't re-submit data)." %}
  3. {% trans "Re-enter the information, and submit the form again." %}
  4. {% trans "Ensure the URL does not contain an extra "/" anywhere (eg: https://foo//saml -> https://foo/saml)." %}
{% if no_referer %}

You are seeing this message because Sentry requires a 'Referer header' to be sent by your Web browser, but none was sent. This header is required for security reasons, to ensure that your browser is not being hijacked by third parties.

If you have configured your browser to disable 'Referer' headers, please re-enable them, at least for this site, or for HTTPS connections, or for 'same-origin' requests.

{% endif %}

Read more about CSRF on Wikipedia.

{% endblock %}