forked from AgoraIO/Basic-Video-Call
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeeting.html
More file actions
71 lines (65 loc) · 2.29 KB
/
meeting.html
File metadata and controls
71 lines (65 loc) · 2.29 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="cache-control" content="max-age=0">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="shortcut icon" href="assets/favicon.ico">
<title>AgoraWeb</title>
</head>
<body>
<div class="wrapper" id="page-meeting">
<div class="ag-header">
<div class="ag-header-lead">
<img class="ag-header-logo" src="../../assets/images/ag-logo.png" alt="">
<span></span>
</div>
<div class="ag-header-msg">
Room:
<span id="room-name">--</span>
</div>
</div>
<div class="ag-main">
<div class="ag-container" id="ag-canvas">
<!-- btn group -->
<div class="ag-btn-group">
<span class="ag-btn exitBtn" title="Exit">
<i class="ag-icon icon-call-ends"></i>
</span>
<span class="ag-btn videoControlBtn" title="Enable/Disable Video">
<i class="ag-icon icon-camera"></i>
<i class="ag-icon icon-camera-off"></i>
</span>
<span class="ag-btn audioControlBtn" title="Enable/Disable Audio">
<i class="ag-icon icon-mic"></i>
<i class="ag-icon icon-mic-off"></i>
</span>
<span class="ag-btn shareScreenBtn" title="Share Screen">
<i class="ag-icon icon-screen-share"></i>
</span>
<span class="ag-btn displayModeBtn" title="Switch Display Mode">
<i class="ag-icon icon-switch-layout"></i>
</span>
<!-- <span class="ag-btn ctrlBtn" title="Control">
<i class="ag-icon icon-ctrl"></i>
</span> -->
<!-- <span class="ag-btn disableRemoteBtn" title="Hide/Show Remote Stream">
<i class="ag-icon icon-visible"></i>
<i class="ag-icon icon-invisible"></i>
</span> -->
<!-- <span class="ag-btn inviteBtn"></span>
<span class="ag-btn shareBtn"></span> -->
</div>
</div>
</div>
<div class="ag-footer">
<a class="ag-href" target="_blank" href="https://www.agora.io">
<span>Powered By Agora</span>
</a>
<span>Talk to Support: 400 632 6626</span>
</div>
<!-- modal/messages/notifications -->
</div>
<!-- inject -->
</body>
</html>