Spaces:
Running
Running
File size: 542 Bytes
afc20a7 8e4d09c f9ef852 b61f3d2 8e4d09c f9ef852 8e4d09c f834763 afc20a7 8e4d09c f9ef852 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Chat Room</title>
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
</head>
<body>
<div id="chatContainer">
<div id="chatroom-title"></div>
<div id="chat"></div>
<input id="msg" autocomplete="off">
<button id="send">Send</button>
<button id="leave">Leave</button>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/4.8.1/socket.io.js"></script>
<script src="/static/chat.js"></script>
</body>
</html>
|