Files
encounterflow/battleflow/templates/board.html
Peter van Arkel 644b207997 pre-push commit
2025-11-20 14:40:42 +01:00

41 lines
1.3 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!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>