-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdebug.html
More file actions
49 lines (44 loc) · 1.48 KB
/
Copy pathdebug.html
File metadata and controls
49 lines (44 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Splurt! - Debug</title>
<link rel="stylesheet" href="/src/styles.css" />
</head>
<body>
<header class="site-header">
<a class="brand" href="/">Splurt!</a>
<nav class="site-nav" aria-label="Primary">
<a href="/">Play</a>
<a href="/submit.html">Submit</a>
<a aria-current="page" href="/debug.html">Debug</a>
</nav>
</header>
<main class="page-shell">
<section class="page-heading">
<h1>Debug</h1>
<p>Inspect the in-memory card pools for the current backend process.</p>
</section>
<div class="actions compact-actions">
<button id="refresh-debug" type="button">Refresh</button>
<p class="status-message" id="debug-status" role="status">Loading card pools...</p>
</div>
<section class="debug-grid">
<article class="debug-panel">
<h2>Categories <span id="category-count">0</span></h2>
<ul id="category-list">
<li>No categories loaded.</li>
</ul>
</article>
<article class="debug-panel">
<h2>Criteria <span id="criteria-count">0</span></h2>
<ul id="criteria-list">
<li>No criteria loaded.</li>
</ul>
</article>
</section>
</main>
<script type="module" src="/src/debug.js"></script>
</body>
</html>