This commit is contained in:
Blackwhitebear8 2025-06-22 16:33:28 +02:00
commit 5e31dd0214
37 changed files with 2082 additions and 0 deletions

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.jpg" 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 %}