implement demo mode

This commit is contained in:
Nystik
2026-05-14 19:26:53 +02:00
parent e021993d61
commit ab89a94088
21 changed files with 1186 additions and 8 deletions

View File

@@ -0,0 +1,32 @@
<!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>