File size: 326 Bytes
47cb610
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
{% extends 'base.html' %}

{% block title %}Page Not Found{% endblock %}

{% block content %}
<div class="section center-align">
    <h1>404 - Page Not Found</h1>
    <p>The page you are looking for does not exist.</p>
    <a href="{% url 'surveys' %}" class="btn waves-effect waves-light">Go to Home</a>
</div>
{% endblock %}