csrf_failure.html 783 B

123456789101112131415161718192021222324252627
  1. {% extends "misago/base.html" %}
  2. {% load i18n %}
  3. {% block title %}{% trans "Request blocked" %} | {{ block.super }}{% endblock %}
  4. {% block meta_description %}{% trans "This is usually caused by your browser not accepting or using outdated cookies. Check your browser configuration and try again." %}{% endblock meta_description %}
  5. {% block content %}
  6. <div class="container">
  7. <div class="error-message">
  8. <div class="error-icon">
  9. <span class="fa fa-exclamation-triangle"></span>
  10. </div>
  11. <h1>{% trans "Suspicious request blocked." %}</h1>
  12. <p>{% trans "This is usually caused by your browser not accepting or using outdated cookies." %}</p>
  13. <p>{% trans "Check your browser configuration and try again." %}</p>
  14. </div>
  15. </div>
  16. {% endblock content %}