Commit 2b995c

2026-06-06 15:29:49 Carsten: Uploaded via inline attachment
/dev/null .. labor23/01_infrastruktur/terminal/home-assistant-boot/home-assistant-boot.html
@@ 0,0 1,60 @@
+ <!DOCTYPE html>
+ <html lang="de">
+ <head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>Labor23 – Home Assistant</title>
+ <style>
+ * { box-sizing: border-box; margin: 0; padding: 0; }
+ body {
+ background: #111318;
+ color: #8a9bb5;
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ height: 100vh;
+ gap: 1.5rem;
+ user-select: none;
+ }
+ h1 {
+ color: #e0e6f0;
+ font-size: 1.8rem;
+ font-weight: 300;
+ letter-spacing: 0.08em;
+ }
+ .dots { display: flex; gap: 10px; }
+ .dot {
+ width: 10px;
+ height: 10px;
+ background: #03a9f4;
+ border-radius: 50%;
+ animation: pulse 1.4s ease-in-out infinite;
+ }
+ .dot:nth-child(2) { animation-delay: .2s; }
+ .dot:nth-child(3) { animation-delay: .4s; }
+ @keyframes pulse {
+ 0%, 80%, 100% { transform: scale(.5); opacity: .3; }
+ 40% { transform: scale(1); opacity: 1; }
+ }
+ p { font-size: .9rem; }
+ noscript a { color: #03a9f4; }
+ </style>
+ <script>
+ window.onload = function () {
+ window.location.replace("http://192.168.1.226:8123/");
+ };
+ </script>
+ </head>
+ <body>
+ <h1>Labor23</h1>
+ <div class="dots">
+ <div class="dot"></div>
+ <div class="dot"></div>
+ <div class="dot"></div>
+ </div>
+ <p>Verbinde mit Home Assistant…</p>
+ <noscript><p><a href="http://192.168.1.226:8123/">→ Home Assistant öffnen</a></p></noscript>
+ </body>
+ </html>
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9