-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (65 loc) · 2.33 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
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Magny</title>
</head>
<body>
<div id="app">
<h1>Magny</h1>
<div class="container">
<div id="videoChat">
<div id="videos">
<span>
<h3>User A</h3>
<video muted id="localVideo" autoplay playsinline ></video>
</span>
<span>
<h3>User B</h3>
<video id="remoteVideo" autoplay playsinline ></video>
</span>
</div>
<div class="controls">
<p>Start Webcam</p>
<button id="webcamButton"><i class="fa-solid fa-video"></i></button>
</div>
<div class="controls">
<p>Make a call</p>
<button id="callButton"><i class="fa-solid fa-envelope"></i></button>
<p>Answer the call</p>
<button id="answerButton"><i class="fa-solid fa-phone"></i></button>
</div>
<input type="text" id="offerInput">
<div class="controls">
<p>Hang up the call</p>
<button disabled id="hangUpButton"><i class="fa-solid fa-phone-slash"></i></button>
</div>
</div>
<div id="chat">
<h2>Chat</h2>
<div id="chat-box">
</div>
<div class="controls">
<form id="chatForm">
<input disabled type="text" id="messageInput" required>
<button disabled id="sendMessage"><i class="fa-solid fa-paper-plane"></i></button>
</form>
</div>
<div id="dropArea" class="controls">
<div id="dragArea">
<h3><a id="chooseFile">Choose</a> or Drag & Drop</h3>
<p id="fileName"> </p>
<input type="file" id="fileInput">
<button disabled id="sendFile"><i class="fa-solid fa-file-upload"></i></button>
<svg id="loadingBar"></svg>
</div>
</div>
</div>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
<script src="https://kit.fontawesome.com/a98a5e05be.js" crossorigin="anonymous"></script>
</body>
</html>