Abmelden Seite eingefügt
This commit is contained in:
58
public/offline.html
Normal file
58
public/offline.html
Normal 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>
|
||||
Reference in New Issue
Block a user