27 lines
1.1 KiB
PHP
27 lines
1.1 KiB
PHP
<!DOCTYPE html>
|
||
<html lang="de">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta http-equiv="refresh" content="10">
|
||
<title>Update läuft – bitte warten</title>
|
||
<style>
|
||
body { font-family: Arial, sans-serif; display: flex; align-items: center; justify-content: center;
|
||
height: 100vh; margin: 0; background: #f3f4f6; color: #1f2937; }
|
||
.box { text-align: center; padding: 2rem; background: white; border-radius: 12px;
|
||
box-shadow: 0 4px 20px rgba(0,0,0,.1); max-width: 400px; }
|
||
h1 { font-size: 1.5rem; margin-bottom: .5rem; }
|
||
p { color: #6b7280; font-size: .9rem; }
|
||
.spinner { width: 40px; height: 40px; border: 4px solid #e5e7eb; border-top-color: #6366f1;
|
||
border-radius: 50%; animation: spin 1s linear infinite; margin: 1rem auto; }
|
||
@keyframes spin { to { transform: rotate(360deg); } }
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="box">
|
||
<div class="spinner"></div>
|
||
<h1>🔄 Update wird installiert</h1>
|
||
<p>Bitte einen Moment Geduld.<br>Die Seite lädt automatisch neu.</p>
|
||
</div>
|
||
</body>
|
||
</html>
|