error.html 606 B

12345678910111213141516171819
  1. {% extends "base.html" %}
  2. {% set active_page = page %}
  3. {% block title %} Error {% if error_description %}:{% endif %} {{ error_description }} {% endblock %}
  4. {% block divs %}
  5. <div class="card p-3 mt-3 mb-3">
  6. <h1>Sorry, something went wrong :(</h1>
  7. <p>{{ error_description }} The error message says:</p>
  8. <p class="error">{{ error_class }} {% if error_class %}:{% endif %} "{{ error_message }}"</p>
  9. <p>You might want to try to <a onclick="window.history.back()">return and select something else</a> or <a href="/?clear-session=1">clear your session</a> and try again.</p>
  10. </div>
  11. {% endblock %}