Additional changes for purposes of templating

This commit is contained in:
Jonatan Rek
2025-01-21 16:26:48 +01:00
parent 610ef79690
commit 556fe5920e
4 changed files with 189 additions and 26 deletions

28
templates/404.html Normal file
View File

@@ -0,0 +1,28 @@
<style>
.loading {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.spinner {
position: absolute;
top: 50%;
margin-top: -20px;
width: 100%;
height: 40px;
text-align: center;
font-size: 10px;
}
h1 {
font-size: 25px;
}
</style>
<div class="loading">
<div class="spinner">
<h1>Service <b>{{SERVICE}}</b> not found !!!</h1>
</div>
</div>