Files
html/web-ia-status.html

35 lines
942 B
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="0; url=/web-ia-health.html">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Redirection vers Command Center</title>
<style>
body {
background-color: #0a0e1a;
font-family: JetBrains Mono;
color: #00e5a0;
}
.spinner {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 24px;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% {
transform: translate(-50%, -50%) rotate(0deg);
}
100% {
transform: translate(-50%, -50%) rotate(360deg);
}
}
</style>
</head>
<body>
<div class="spinner">...</div>
</body>
</html>