Spaces:
Runtime error
Runtime error
Create voice.html
Browse files- templates/voice.html +17 -0
templates/voice.html
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
<link rel="stylesheet" href="/static/style.css">
|
7 |
+
<title>Voice AI Hotel Booking</title>
|
8 |
+
</head>
|
9 |
+
<body>
|
10 |
+
<div id="voice-container">
|
11 |
+
<h1>Hotel Booking Voice AI</h1>
|
12 |
+
<div id="voice-result"></div>
|
13 |
+
<button id="start-voice">🎙️ Start Voice Chat</button>
|
14 |
+
</div>
|
15 |
+
<script src="/static/script.js"></script>
|
16 |
+
</body>
|
17 |
+
</html>
|