Spaces:
Sleeping
Sleeping
File size: 816 Bytes
4f737fe 482c1a9 4f737fe 21681f7 dc704e3 4f737fe b1803bd 4f737fe 482c1a9 4f737fe |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Chatbox</title>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<button id="createRoom" onclick="createRoom(prompt('New Room ID:'))">Create a New Room</button>
<button id="joinRoom" onclick="window.location.reload()">Join an Existing Room</button>
<div class="chat-container">
<div class="chat-messages" id="messages"></div>
<div class="chat-input">
<input type="text" id="nameInputBox" placeholder="Your Name">
<input type="text" id="messageInputBox" placeholder="Type a message...">
<button onclick="postMessage(myRoomId)">Send</button>
</div>
</div>
<script src="{{ url_for('static', filename='script.js') }}"></script>
</body>
</html>
|