30 lines
808 B
HTML
30 lines
808 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<title>Socket.IO chat</title>
|
||
|
|
<link rel="stylesheet" href="./css/main.css">
|
||
|
|
<link rel="stylesheet" href="/css/github.css">
|
||
|
|
<script src="/js/showdown.min.js"></script>
|
||
|
|
<script src="https://cdn.socket.io/4.5.4/socket.io.min.js"></script>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div id="app-wrap">
|
||
|
|
<ul id="messages"></ul>
|
||
|
|
<div id="status"></div>
|
||
|
|
<div id="bottom_bar">
|
||
|
|
<div id="form">
|
||
|
|
<input id="input" autocomplete="off" />
|
||
|
|
<button id="send_button">Send</button>
|
||
|
|
<button id="reset_button">ClearMemory</button>
|
||
|
|
<button id="test_button">AutoTest</button>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<script src="./js/main.js"></script>
|
||
|
|
<script type="text/javascript">
|
||
|
|
|
||
|
|
</script>
|
||
|
|
</body>
|
||
|
|
</html>
|