csrf_failure.html 944 B

12345678910111213141516171819202122232425262728293031
  1. {% extends "misago/base.html" %}
  2. {% load i18n %}
  3. {% block title %}{% trans "Request blocked" %} | {{ block.super }}{% endblock %}
  4. {% block meta-description %}
  5. {% trans "This is usually caused by your browser not accepting or using outdated cookies. Check your browser configuration and try again." %}
  6. {% endblock meta-description %}
  7. {% block content %}
  8. <div class="page page-error page-error-csrf">
  9. <div class="container page-container">
  10. <div class="message-panel">
  11. <div class="message-icon">
  12. <span class="material-icon">remove_circle_outline</span>
  13. </div>
  14. <div class="message-body">
  15. <p class="lead">{% trans "Suspicious request blocked." %}</p>
  16. <p>{% trans "This is usually caused by your browser not accepting or using outdated cookies." %}</p>
  17. <p>{% trans "Check your browser configuration and try again." %}</p>
  18. </div>
  19. </div>
  20. </div>
  21. </div>
  22. {% endblock content %}