Abmelden Seite eingefügt

This commit is contained in:
ISA
2024-10-21 10:09:55 +02:00
parent 420e3b8ab2
commit 1c4b072ef3
3 changed files with 73 additions and 33 deletions

58
public/offline.html Normal file
View File

@@ -0,0 +1,58 @@
<!DOCTYPE html>
<html lang="de">
<head>
<title>Abmeldung</title>
<meta charset="utf-8">
<link rel="stylesheet" href="../css/ie.css">
<link rel="icon" sizes="48x48" href="./IMAGES/favicon-48x48.png" type="image/png">
<!-- Foundation Framework CSS -->
<link rel="stylesheet" href="css/app.css" />
<link rel="stylesheet" href="css/foundation.css" />
<link rel="stylesheet" href="css/foundation-icons.css" />
<style>
/* Text zentrieren und fett machen */
.centered {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
/* Vollständige Bildschirmhöhe für vertikales Zentrieren */
text-align: center;
/* Text zentrieren */
}
.title2 {
font-weight: bold;
/* Fett machen */
font-size: 1.5em;
/* Optional: Schriftgröße anpassen */
}
</style>
</head>
<script>
function off() {
try {
window.focus();
window.close();
}
catch (e) {
}
}
</script>
<body class="offlineHtmlBodyElement">
<div class="centered">
<p class='title2'>
Sie werden abgemeldet.
<br>
<br>
Bitte schliessen Sie den Browser.
</p>
</div>
</body>
</html>