-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (46 loc) · 1.78 KB
/
index.html
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
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<title>Agora Video Chat! - Homework#3 </title>
<link rel="stylesheet" href="styles.css"/>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet">
<script src="https://cdn.agora.io/sdk/release/AgoraRTCSDK-3.3.1.js"></script>
</head>
<body>
<div id="main-container">
<div id="left-pane">
<div class="image">
<img src="agoraLogo.png" id="logo" alt="Agora Logo">
</div>
<div id="login">
<span>Join a Chat!</span>
<br>
<input type="text" id="username" placeholder="Enter your username">
<br>
<input type="text" id="channel" placeholder="Enter the channel name" value = "Default Channel">
<br>
<button id="join">Join</button>
<br> <br> <br>
<span>Participants: </span>
<div id="participants"></div>
</div>
</div>
<div id="right-pane">
<div id="self-stream">
</div>
<div id="sub-container">
<div id="remote-stream">
</div>
<div id="remote-stream2">
</div>
<div id="remote-stream3">
</div>
</div>
</div>
</div>
<script src="AgoraRTC.js"></script>
<script>
</script>
</body>
</html>