41 lines
1.2 KiB
HTML
41 lines
1.2 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>CnJ</title>
|
|
<script src="script.js"></script>
|
|
</head>
|
|
<body>
|
|
<p>WS: <span id="ws"></span> <button id="change-ws">Change WS</button></p>
|
|
<p>UserID: <span id="userid"></span> <button id="copy-userid">Copy</button></p>
|
|
|
|
<br>
|
|
<label for="message-receiver">Message receiver:</label>
|
|
<select name="message-receiver" id="message-receiver">
|
|
<option value="user">User</option>
|
|
<option value="room">Room</option>
|
|
</select>
|
|
<br><br>
|
|
<label for="cmd">Cmd:</label>
|
|
<input type="number" id="cmd" name="cmd" min="0" max="10000" >
|
|
<br><br>
|
|
<label for="receiver">Receiver:</label>
|
|
<input id="receiver" type="text">
|
|
<button id="btn-clear-rec">Clear</button>
|
|
<br>
|
|
<br>
|
|
<label for="msg">Chat msg:</label>
|
|
<input id="msg" type="text">
|
|
<button id="btn-send">Send</button>
|
|
<button id="btn-clear">Clear</button>
|
|
|
|
<style>
|
|
body {
|
|
background-color: black;
|
|
color: white;
|
|
}
|
|
</style>
|
|
</body>
|
|
</html> |