-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (41 loc) · 2.25 KB
/
index.html
File metadata and controls
48 lines (41 loc) · 2.25 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Zoom Video SDK UI toolkit</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="@zoom/videosdk-ui-toolkit/dist/videosdk-ui-toolkit.css">
<link rel="stylesheet" href="styles.css">
<script src="coi-serviceworker.js"></script>
</head>
<body>
<main>
<div class="header" id="header">
<img src="favicon.ico" alt="">
<h1>Zoom Video SDK UI toolkit</h1>
</div>
<form class="join-flow" id="join-flow">
<p id="sessionNameRequired">Session Name Required:</p>
<input type="text" placeholder="Session Name *" id="sessionName" autocomplete="off">
<p id="passcodeLength">Passcode can't be longer than 10 characters:</p>
<input type="text" placeholder="Session Passcode" id="sessionPasscode" maxlength="10" autocomplete="off">
<p id="nameRequired">Your Name Required:</p>
<input type="text" placeholder="Your Name *" id="yourName">
<select id="role">
<option value="0">Role: User</option>
<option value="1">Role: Host</option>
</select>
<button type="button" onClick="getVideoSDKJWT()" id="joinSessionButton">Join Session</button>
<small>(<a href="https://developers.zoom.us/docs/video-sdk/web/gallery-view/" target="_blank">Dev enjoinment and SharedArrayBuffer enabled</a>)</small>
<div id="rating">
<p>Thanks for joining!</p>
<a href="https://success.zoom.us/survey/f9h8evMBr0EJ4L2fO4ndgCuZj_jeQQ4GoWzQLkUDFFuherGHvwk.IjLfya3ooOVAJpiP/view?id=4V9k0_ctQeOpqAxETx75sQ#/sharePreview" target="_blank"> Click here to rate your experience.</a>
</div>
</form>
<div id='sessionContainer'></div>
</main>
<script src="@zoom/videosdk-ui-toolkit/index.js" type="module"></script>
<script src="scripts.js" type="module"></script>
</body>
</html>