-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcodriver.html
More file actions
27 lines (25 loc) · 904 Bytes
/
codriver.html
File metadata and controls
27 lines (25 loc) · 904 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Codriver - Your AI-powered Assistant</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="fullscreen-container">
<div class="title">Codriver: Your AI-powered Assistant</div>
<div class="mic-status" id="micStatus">Listening...</div>
<div class="chat-container">
<div class="message-area" id="messageArea"></div>
<div class="input-area">
<input type="text" id="userInput" placeholder="Ask your question..." />
<button onclick="sendMessage()">Send</button>
<button onclick="startListening()"><span>🎤</span> Speak</button>
</div>
</div>
</div>
<script src="script.js"></script>
<p><b>© 2025 - 2026 HellenicDev <br> All Rights Reserved.</b></p>
</body>
</html>