-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (38 loc) · 1.21 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
<!DOCTYPE html>
<html>
<head>
<title>Quickstart JS</title>
<link rel="stylesheet" href="src/styles.css" />
<meta charset="UTF-8" />
</head>
<body>
<header>
<img class="logo" src="logo.png" width="200" />
<button id="leave-btn" class="btn-danger hide">Leave Room</button>
</header>
<form id="join">
<h2>Join Room</h2>
<div class="input-container">
<input id="name" type="text" name="username" placeholder="Your name" />
</div>
<!-- <div class="input-container">
<input id="token" type="text" name="token" placeholder="Auth token" />
</div> -->
<button type="button" class="btn-primary" id="join-btn-host">
Sign in as Host
</button>
<button type="button" class="btn-primary" id="join-btn-guest">
Sign in as Guest
</button>
</form>
<div id="conference" class="conference-section hide">
<h2>FIC Class</h2>
<div id="peers-container"></div>
</div>
<div id="controls" class="control-bar hide">
<button id="mute-aud" class="btn-control">Mute</button>
<button id="mute-vid" class="btn-control">Hide</button>
</div>
<script src="src/index.js"></script>
</body>
</html>