forked from RitabrataDas343/VideoCall
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjoin.html
More file actions
47 lines (44 loc) · 1.48 KB
/
join.html
File metadata and controls
47 lines (44 loc) · 1.48 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Join Room</title>
<link rel="shortcut icon" type="image/jpg" href="assets/favicon.png"/>
<link rel="stylesheet" href="assets/style/main.css" />
</head>
<body>
<video autoplay muted loop id="myVideo">
<source src="assets/glitch_1.mp4" type="video/mp4" />
</video>
<audio id="typewriter">
<!-- <source src="assets/key1.ogg" type="audio/ogg"> -->
<source src="assets/keyboard.mp3" type="audio/mpeg" />
Your browser does not support the audio tag.
</audio>
<audio id="mouse">
<!-- <source src="assets/key1.ogg" type="audio/ogg"> -->
<source src="assets/mouse.mp3" type="audio/mpeg" />
Your browser does not support the audio tag.
</audio>
<div class="btn-center">
<form action="room.html" method="GET">
<label for="" id="join-msg">Enter the Room ID below: </label>
<br />
<br />
<input type="text" id="session-id" class="center" name="roomID" required/>
<br />
<br />
<br />
<br />
<br />
<button id="enter">Enter Room</button>
<br />
<br />
<button id="back" onclick="location.href = 'index.html';">Back</button>
</form>
</div>
</body>
<script src="./assets/js/join.js"></script>
</html>