quizterm/server/priv/static/root.html

49 lines
1.4 KiB
HTML
Raw Normal View History

<html>
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>QUIZTERMINAL v1.0</title>
<script src="/lustre/runtime.mjs" type="module"></script>
<script src="/client.js" type="module"></script>
<script id="model" type="application/json">
[
{
2026-04-06 14:03:33 +02:00
"id": "1234",
"name": "Team A",
"key": "1234"
},
{
2026-04-06 14:03:33 +02:00
"id": "1235",
"name": "Team B",
"key": "1235"
},
{
2026-04-06 14:03:33 +02:00
"id": "1236",
"name": "Team C",
"key": "1236"
},
{
2026-04-06 14:03:33 +02:00
"id": "1237",
"name": "Team D",
"key": "1237"
}
]
</script>
<link href="/static/layout.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="terminal-screen">
<div class="terminal-glow">
<div class="scanlines"></div>
<div class="terminal-header"><pre class="terminal-title">
╔═══════════════════════════════════════╗
║ Q U I Z T E R M I N A L ║
╚═══════════════════════════════════════╝
</pre>
</div>
<div id="app"></div>
</div>
</div>
</body>
</html>