blob: 6577fb82ba3d35077b4532d8226b1078a415b2b2 (
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 'account_enter' %}">here</a> to go to the homepage.</p>
</div>
</div>
</div>
{% endblock %}
|