This commit is contained in:
2026-08-05 21:39:14 -05:00
commit b8d7e732d5
13 changed files with 1791 additions and 0 deletions

23
history.html Normal file
View File

@@ -0,0 +1,23 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>S3 Audio Capture History</title>
<link rel="stylesheet" href="history.css">
</head>
<body>
<main class="history-page">
<header>
<h1>S3 Audio Capture History</h1>
<p>All captured Splice S3 URLs.</p>
</header>
<p id="status">Loading history...</p>
<ul id="historyList"></ul>
</main>
<script src="history.js"></script>
</body>
</html>