41 lines
1.3 KiB
HTML
41 lines
1.3 KiB
HTML
<!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>
|