forked from daily-demos/electron-overlay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtray.html
51 lines (51 loc) · 1.48 KB
/
tray.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
<html>
<head>
<link
href="https://fonts.googleapis.com/css2?family=Roboto&display=swap"
rel="stylesheet"
/>
<link href="./trayStyles.css" rel="stylesheet" />
</head>
<body>
<div id="wrapper" class="entry">
<div id="entry">
<h2>Join a video call</h2>
<form id="enterCall">
<span class="formContainer">
<label>Your Name:</label>
<input type="text" id="userName" required />
</span>
<span class="formContainer">
<label
>Room URL (<a
href="https://dashboard.daily.co/rooms/create"
target="_blank"
>Create room</a
>):
</label>
<input
type="url"
id="roomURL"
placeholder="https://<domain>.daily.co/<room>"
required
/>
</span>
<button type="submit">Join Call</button>
</form>
</div>
<div id="inCall">
<h2>Invite others to call</h2>
<p>Copy and share URL with others to invite them to this call</p>
<button id="clipboard">Copy to clipboard</button>
</div>
<div id="footer">
<img src="./assets/daily.svg" alt="Daily logo" />
<span
>A demo from
<a href="https://daily.co" target="_blank">Daily</a></span
>
</div>
</div>
<script src="./renderer/tray/tray.js" type="module"></script>
</body>
</html>