38 lines
1.3 KiB
HTML
38 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Console</title>
|
|
<link rel="stylesheet" href="/dist/style.css">
|
|
</head>
|
|
<body>
|
|
<div class="connection-status-container">
|
|
<span id="connection-status"></span>
|
|
</div>
|
|
|
|
<div class="viewers-container">
|
|
<span id="viewers-count">0 viewers</span>
|
|
</div>
|
|
|
|
<div class="scroll-container">
|
|
<button id="btn-toggle-scroll">Auto scroll: <span id="scroll-state" style="color: #27ae60; font-weight: bold;">on</span></button>
|
|
</div>
|
|
|
|
<div class="checkbox-container">
|
|
<div class="checkbox-container-inside">
|
|
<input type="checkbox" id="checkbox-alpha" name="alpha" value="alpha" checked>
|
|
<label for="alpha">Alpha</label><br>
|
|
<input type="checkbox" id="checkbox-beta" name="beta" value="beta" checked>
|
|
<label for="beta">Beta</label><br>
|
|
<input type="checkbox" id="checkbox-stable" name="stable" value="stable" checked>
|
|
<label for="stable">Stable</label>
|
|
</div>
|
|
</div>
|
|
|
|
<ul id="messages"></ul>
|
|
|
|
<script src="/dist/script.js"></script>
|
|
</body>
|
|
</html> |