Spaces:
Paused
Paused
File size: 706 Bytes
5a81b95 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<!DOCTYPE html>
<html>
<head>
<style>
body { background: #111; color: #0f0; font-family: monospace; display: flex; justify-content: center; align-items: center; height: 100vh; flex-direction: column; }
h1 { color: #f00; text-shadow: 0 0 10px #f00; }
button { background: #0f0; color: #000; border: none; padding: 10px 20px; cursor: pointer; font-weight: bold; margin-top: 20px; }
button:hover { background: #fff; }
</style>
</head>
<body>
<h1>⚠ SIGNAL LOST ⚠</h1>
<p>Could not connect to the Neural Interface.</p>
<p>Please check if the server is running.</p>
<br>
<button onclick="location.reload()">RETRY CONNECTION</button>
</body>
</html> |