39 lines
1.2 KiB
HTML
39 lines
1.2 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Log Streamer</title>
|
|
<link rel="stylesheet" href="/styles.css">
|
|
</head>
|
|
<body>
|
|
<main class="shell">
|
|
<section class="toolbar" aria-label="Log stream controls">
|
|
<div class="identity">
|
|
<h1>Log Streamer</h1>
|
|
<div id="filePath" class="file-path">Waiting for file...</div>
|
|
</div>
|
|
|
|
<div class="controls">
|
|
<span id="status" class="status" data-state="connecting">Connecting</span>
|
|
<label class="toggle">
|
|
<input id="autoScroll" type="checkbox" checked>
|
|
<span>Auto-scroll</span>
|
|
</label>
|
|
<button id="pauseButton" type="button">Pause</button>
|
|
<button id="clearButton" type="button">Clear</button>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="meta" aria-live="polite">
|
|
<span><strong id="lineCount">0</strong> lines visible</span>
|
|
<span id="pendingCount" hidden>0 buffered</span>
|
|
</section>
|
|
|
|
<pre id="logOutput" class="log-output" aria-label="Live log output"></pre>
|
|
</main>
|
|
|
|
<script src="/app.js" defer></script>
|
|
</body>
|
|
</html>
|