Spaces:
Running
Running
<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> | |