summaryrefslogtreecommitdiff
path: root/templates/error.django
blob: b7473ae44783cb8ce2f93f829eb4953a031f7f32 (plain)
1
2
3
4
5
6
7
8
9
{% extends 'layouts/generic.django' %} {% block content %}
  <div class="error-page">
    <div class="error-container">
      <h1>{{ ErrorTitle }}</h1>
      <p>{{ ErrorMessage }}</p>
      <a href="{% url 'auth.login' %}">Go back home</a>
    </div>
  </div>
{% endblock %}