mirror of
https://github.com/uw935/vatsimfox.git
synced 2026-09-17 08:18:56 +00:00
12 lines
403 B
HTML
12 lines
403 B
HTML
{% extends "/include/template.html" %}
|
|
{% block title %}404 - Not Found / VATSIM Fox{% endblock %}
|
|
{% block content %}
|
|
<div class="p-5 mb-4 bg-light rounded-3">
|
|
<div class="container-fluid py-5">
|
|
<h1 class="mb-4 display-5 fw-bold">4O4 - Page Not Found</h1>
|
|
<a href="/">
|
|
<button class="btn btn-outline-primary" type="submit">Back to index page</button>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |