summaryrefslogtreecommitdiff
path: root/templates/pages/e404.html
blob: 62ef99df28492644bf43bca6dfcdf51861c245bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "layout.html" %}

{% block content %}
<div class="container">
    <div class="row">
        <div class="span12">
            <h1>Page not found <small>Error 404</small></h1>
            <br>
            <p>The page you are looking for doesn't exist. Please click <a href="{% url 'sbhs_server.account.views.index' %}">here</a> to go to the homepage.</p>
        </div>
    </div>
</div>
{% endblock %}