Nomi78600's picture
main
47cb610
raw
history blame contribute delete
326 Bytes
{% 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 %}