File size: 782 Bytes
bd0df73 5631958 bd0df73 5631958 bd0df73 5631958 d7f80b3 bd0df73 5631958 bd0df73 5631958 bd0df73 5631958 bd0df73 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | <!DOCTYPE html>
<html>
<head><title>Voice Chat</title></head>
<body>
<h2>🎤 Voice Chat</h2>
<input id="name" placeholder="Enter your name"><br><br>
<input id="room" placeholder="Enter room code"><br><br>
<button onclick="createRoom()">Create Room</button>
<button onclick="joinRoom()">Join Room</button>
<script>
function createRoom() {
const name = document.getElementById("name").value;
const room = Math.random().toString(36).substr(2, 6);
location.href = `/room.html?room=${room}&name=${name}`;
}
function joinRoom() {
const name = document.getElementById("name").value;
const room = document.getElementById("room").value;
location.href = `/room.html?room=${room}&name=${name}`;
}
</script>
</body>
</html>
|