Spaces:
Sleeping
Sleeping
Upload index.html
Browse files- templates/index.html +18 -0
templates/index.html
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html>
|
3 |
+
<head>
|
4 |
+
<title>Viazi Lishe Mtaalamu</title>
|
5 |
+
<link rel="stylesheet" href="{{ url_for('static', path='/styles.css') }}">
|
6 |
+
</head>
|
7 |
+
<body>
|
8 |
+
<h1>Uliza Mtaalamu wetu swali lolote Kuhusu viazi Lishe</h1>
|
9 |
+
<div id="chat-container">
|
10 |
+
<!-- Chat messages will be dynamically added here -->
|
11 |
+
</div>
|
12 |
+
<div>
|
13 |
+
<button id="record-btn">Bonyeza kitufe cha kurekodi na uliza swali lako</button>
|
14 |
+
<audio id="audio-player" controls style="display: none;"></audio>
|
15 |
+
</div>
|
16 |
+
<script src="{{ url_for('static', path='/script.js') }}"></script>
|
17 |
+
</body>
|
18 |
+
</html>
|