KingNish commited on
Commit
6a35f6c
1 Parent(s): 1aac448

Create index.html

Browse files
Files changed (1) hide show
  1. index.html +31 -0
index.html ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Voice Assistant</title>
7
+ <link rel="stylesheet" href="styles.css">
8
+ <script secura-auto src="secure.js"></script>
9
+ </head>
10
+ <body>
11
+ <div secura-auto class="container">
12
+ <h1>Voice Assistant</h1>
13
+ <div id="responseTime">Latency: 0ms</div>
14
+ <div class="indicator-wrapper">
15
+ <div id="userIndicator" class="indicator user-indicator">User: Nothing</div>
16
+ <div id="aiIndicator" class="indicator ai-indicator">AI: Listening</div>
17
+ </div>
18
+
19
+ <div class="button-group">
20
+ <button id="startStopButton">Start Listening</button>
21
+ </div>
22
+ <select id="voiceSelect">
23
+ <option value="Amy">Female</option>
24
+ <option value="Brian">Male</option>
25
+ <option value="OtherVoice">Other Voice</option>
26
+ </select>
27
+ </div>
28
+ <script src="main.js"></script>
29
+ <script src="secure.js"></script>
30
+ </body>
31
+ </html>