-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
79 lines (79 loc) · 2.69 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<title>Community Call</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="assets/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="Raise your hand app for daily.co" />
<link rel="apple-touch-icon" href="assets/logo192.png" />
<script defer src="./script.js"></script>
<script src="https://unpkg.com/@daily-co/daily-js"></script>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css"
/>
<link rel="stylesheet" href="./style.css" type="text/css" />
</head>
<body>
<div class="tile is-ancestor">
<div class="tile is-parent is-vertical">
<section class="tile is-child notification is-light">
<div class=" welcome-box box ">
<p class="subtitle">
Click the button below to join the call
</p>
<button
class="button is-fullwidth is-link is-medium"
onclick="run()"
>
Join Call
</button>
</div>
<section class="box thanks hidden">
<p class="subtitle">
Thanks for joining the call. Have a great day!
</p>
</section>
<div class="participants-section">
<p class="title">Participants</p>
<p class="subtitle">
Raise your hand to get the moderator's attention
</p>
<div class="box local-participant-info ">
<img
id="hand-img"
class=" is-pulled-right hidden"
src="assets/hand.png"
alt="hand icon"
/>
<p class="name-label"><strong>You</strong></p>
<button
class="button is-primary hidden raise-hand-button"
onclick="raiseOrLowerHand()"
>
<p class="hand-state has-text-right"></p>
</div>
<ul class="participant-list"></ul>
</div>
</section>
</div>
<div class="tile is-vertical is-8">
<div class="tile">
<div class="tile is-parent">
<div class="call-panel tile is-child notification is-light">
<iframe
class="is-overlay"
id="call-frame"
title="daily.co call frame"
allow="camera; microphone"
></iframe>
</div>
</div>
</div>
</div>
</div>
</body>
</html>