pre-push commit

This commit is contained in:
Peter van Arkel
2025-11-20 14:40:42 +01:00
parent 3001e5cffd
commit 644b207997
43 changed files with 1681 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>✦ {{ name }}</title>
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="stylesheet" href="{{ url_for('static', filename='css/board.css') }}">
</head>
<body>
<div id="root" class="wrapper">
<div id="panel" class="panel">
<div class="header">
<div>
<div class="h-title">{{ name }}</div>
<div class="h-sub">{{ subtitle }}</div>
</div>
<div style="display:flex; gap:10px; align-items:center;">
<div class="h-sub">Round <span id="round">1</span> · Updated <span id="updated"></span></div>
<div id="statuspill" class="statuspill">Connecting…</div>
</div>
</div>
<div id="list" class="list"></div>
<div class="footer"><span id="count"></span></div>
</div>
</div>
<!-- Auth/Error overlay -->
<div id="authOverlay" class="overlay">
<div class="box">
<h3>Authorization needed</h3>
<p id="authMsg">This board couldn't authenticate. Check the URL token.</p>
<div class="row">
<input id="tokenInput" placeholder="Enter token (will be saved locally)" />
<button id="setTokenBtn">Use token</button>
</div>
</div>
</div>
<script src="{{ url_for('static', filename='js/board.js') }}"></script>
</body>
</html>