wschat-ng/public/index.html
gzezFISHER f7ddf898c6 [arch] use parcel
Signed-off-by: gzezFISHER <fisher@mail.soj.ac.cn>
2022-09-20 17:17:48 +08:00

35 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>WebSocket Chat Room</title>
<link rel="icon" href="favicon.png">
<link rel="stylesheet" href="style.css"/>
<script type="module" src="script.js"></script>
</head>
<body>
<div id="message"></div>
<textarea id="send" placeholder="Say something or run a command..." spellcheck="false"></textarea>
<div class="top-box">
<button class="send-button" onclick="clear_message()">Clear</button>
<p class="note"><input id="scroll-option" type="checkbox" checked /> Enable auto scroll</p>
<p class="note">Version: SOCKET.IO-2.2</p>
</div>
<div class="bottom-box">
<span class="note">Press Ctrl + Enter to send </span>
<button class="send-button" onclick="send()">Send</button>
</div>
<div id="prompt-background" hidden></div>
<div id="prompt-box" hidden>
<div id="prompt-box-title"></div>
<div id="prompt-box-content">
<input type="text" id="prompt-data" />
<input type="button" value="OK" id="confirm-prompt" />
</div>
</div>
</body>
</html>