54 lines
2.1 KiB
HTML
54 lines
2.1 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="actions-container">
|
|
<button id="btn-clear-console">Clear</button>
|
|
<button id="btn-add-line">Line</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><br>
|
|
<hr color="#34495e">
|
|
<input type="checkbox" id="checkbox-api" name="api" value="api" checked>
|
|
<label for="api">API</label><br>
|
|
<input type="checkbox" id="checkbox-ws" name="ws" value="ws" checked>
|
|
<label for="ws">WS</label><br>
|
|
<input type="checkbox" id="checkbox-sse" name="sse" value="sse" checked>
|
|
<label for="sse">SSE</label><br>
|
|
<input type="checkbox" id="checkbox-mailer" name="mailer" value="mailer" checked>
|
|
<label for="mailer">Mailer</label><br>
|
|
<input type="checkbox" id="checkbox-storage" name="storage" value="storage" checked>
|
|
<label for="storage">Storage</label>
|
|
</div>
|
|
</div>
|
|
|
|
<ul id="messages"></ul>
|
|
|
|
<script src="/dist/script.js"></script>
|
|
</body>
|
|
</html> |