2026-02-20 08:16:43 -05:00
|
|
|
<!doctype html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
|
<title>Chat Grid</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<main class="app">
|
|
|
|
|
<h1>Chat Grid</h1>
|
|
|
|
|
<div id="nicknameContainer" class="nickname-row">
|
|
|
|
|
<label for="preconnectNickname">Nickname</label>
|
|
|
|
|
<input id="preconnectNickname" type="text" maxlength="32" autocomplete="nickname" />
|
|
|
|
|
</div>
|
|
|
|
|
<div class="controls" id="button-container">
|
|
|
|
|
<button id="connectButton">Connect</button>
|
|
|
|
|
<button id="settingsButton">Settings</button>
|
|
|
|
|
<button id="disconnectButton" class="hidden">Disconnect</button>
|
|
|
|
|
<button id="focusGridButton" class="hidden" aria-controls="gameCanvas">Chat Grid</button>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="deviceSummary">
|
|
|
|
|
<p id="audioInputCurrent" class="hidden"></p>
|
|
|
|
|
<p id="audioOutputCurrent" class="hidden"></p>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="status" role="region" aria-live="polite"></div>
|
|
|
|
|
<canvas
|
|
|
|
|
id="gameCanvas"
|
|
|
|
|
width="600"
|
|
|
|
|
height="600"
|
|
|
|
|
tabindex="0"
|
|
|
|
|
class="hidden"
|
2026-02-21 16:55:41 -05:00
|
|
|
aria-label="Chat Grid, press question mark for help."
|
2026-02-20 08:16:43 -05:00
|
|
|
></canvas>
|
2026-02-21 16:51:07 -05:00
|
|
|
<div id="instructions" class="hidden"></div>
|
2026-02-20 08:16:43 -05:00
|
|
|
|
2026-02-21 02:19:33 -05:00
|
|
|
<footer id="appFooter">
|
|
|
|
|
<small id="appVersion">Another AI experiment with Jage. Version</small>
|
|
|
|
|
<section id="updatesSection" class="updates-section">
|
|
|
|
|
<h2>Latest Updates</h2>
|
|
|
|
|
<button id="updatesToggle" type="button" aria-expanded="false" aria-controls="updatesPanel">
|
|
|
|
|
Show updates
|
|
|
|
|
</button>
|
|
|
|
|
<div id="updatesPanel" class="hidden" hidden></div>
|
|
|
|
|
</section>
|
|
|
|
|
</footer>
|
2026-02-20 08:16:43 -05:00
|
|
|
|
|
|
|
|
<div id="settingsModal" class="hidden" role="dialog" aria-modal="true" aria-labelledby="modalTitle">
|
|
|
|
|
<div class="modal-content">
|
|
|
|
|
<h2 id="modalTitle">Audio Settings</h2>
|
|
|
|
|
<label for="audioInputSelect">Microphone (Input)</label>
|
|
|
|
|
<select id="audioInputSelect"></select>
|
|
|
|
|
<label for="audioOutputSelect">Speakers (Output)</label>
|
|
|
|
|
<select id="audioOutputSelect"></select>
|
|
|
|
|
<button id="closeSettingsButton">Close</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</main>
|
|
|
|
|
<script src="%BASE_URL%version.js"></script>
|
|
|
|
|
<script type="module" src="/src/main.ts"></script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|