10 lines
309 B
HTML
10 lines
309 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Not Found{% endblock %}
|
|
{% block content %}
|
|
<article style="text-align: center; margin-top: 4rem;">
|
|
<h1>404</h1>
|
|
<p>The page you're looking for doesn't exist.</p>
|
|
<a href="/dashboard" role="button" class="secondary">Go Home</a>
|
|
</article>
|
|
{% endblock %}
|