Add templates/404.html

This commit is contained in:
Blackwhitebear8 2025-06-21 14:26:04 +02:00
parent a37ce00ed7
commit 202359c9f6

17
templates/404.html Normal file
View file

@ -0,0 +1,17 @@
{% extends "base.html" %}
{% block title %}AS215085 - Router tools | 404{% endblock %}
{% block content %}
<section id="overview">
<h2>404 Not found</h2>
<center><img src="../static/img/404.gif" alt="404 GIF" width="60%">
<h3>Ooops! sorry this page was not found</h3>
<br>
<a href="/" style="text-decoration: none;">
<button style="background-color: #07AAF9; color: white; border: none; border-radius: 25px; padding: 15px 30px; font-size: 18px;">
Go Home
</button>
</a></center>
</section>
{% endblock %}