mirror of
https://github.com/Nystik-gh/ignis.git
synced 2026-06-17 04:35:53 +00:00
33 lines
678 B
HTML
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>
|