-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (53 loc) · 2.05 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
<!DOCTYPE html>
<html>
<head>
<title>CNDEC POC</title>
<!-- added google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="buttons" class="hidden">
<!-- <button id="talk-button-1" type="button">Answer 1</button>
<button id="talk-button-2" type="button">Answer 2</button>
<button id="talk-button-3" type="button">Answer 3</button>
<button id="talk-button-4" type="button">Answer 4</button> -->
<button id="destroy-button" type="button">Esci</button>
<!-- <div id="status">
ICE gathering status: <label id="ice-gathering-status-label"></label
><br />
ICE status: <label id="ice-status-label"></label><br />
Peer connection status: <label id="peer-status-label"></label><br />
Signaling status: <label id="signaling-status-label"></label><br />
Streaming status: <label id="streaming-status-label"></label><br />
</div> -->
</div>
<div class="container">
<button id="startButton">Entra</button>
<div id="content" class="hidden">
<div id="video-wrapper">
<div>
<video id="talk-video" autoplay></video>
</div>
</div>
<div class="chat-container">
<div id="chat-box">
<div class="message bot">Come posso aiutarti?</div>
</div>
<div class="input-container">
<input id="user-input" type="text" placeholder="Fai una domanda..." />
<button id="send-button">Invia</button>
</div>
</div>
</div>
<div id="loading" class="loading hidden">
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
</div>
</div>
<script type="module" src="./index.js"></script>
</body>
</html>