Files
ignis/server/demo/demo-capacity.html
2026-05-16 21:27:24 +02:00

33 lines
678 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Demo at capacity</title>
<style>
body {
font: 16px -apple-system, sans-serif;
background: #202020;
color: #b3b3b3;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
text-align: center;
}
.box {
max-width: 480px;
padding: 32px;
}
h1 { color: #ddd; }
</style>
</head>
<body>
<div class="box">
<h1>Demo at capacity</h1>
<p>All demo slots are currently in use.</p>
<p>Try again in a few minutes. Sessions auto-expire after a period of inactivity.</p>
</div>
</body>
</html>