32 lines
860 B
HTML
32 lines
860 B
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>C&J</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>Receiver:</label>
|
|
<input id="receiver" type="text">
|
|
<button id="btn-clear-rec">Clear</button>
|
|
<br>
|
|
<br>
|
|
<label>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> |