Spaces:
Sleeping
Sleeping
Update templates/design.html
Browse files- templates/design.html +6 -2
templates/design.html
CHANGED
@@ -6,6 +6,8 @@
|
|
6 |
<title>Speech to Text Converter</title>
|
7 |
<!-- Link to CSS -->
|
8 |
<link rel="stylesheet" href="{{ url_for('static', filename='css/design.css') }}">
|
|
|
|
|
9 |
</head>
|
10 |
<body>
|
11 |
<div class="mic-container">
|
@@ -16,8 +18,10 @@
|
|
16 |
|
17 |
<div id="output" class="output-container"></div>
|
18 |
|
19 |
-
|
20 |
-
|
|
|
|
|
21 |
<!-- Script JS -->
|
22 |
<script src="{{ url_for('static', filename='js/design.js') }}"></script>
|
23 |
</body>
|
|
|
6 |
<title>Speech to Text Converter</title>
|
7 |
<!-- Link to CSS -->
|
8 |
<link rel="stylesheet" href="{{ url_for('static', filename='css/design.css') }}">
|
9 |
+
<!-- Add FontAwesome for microphone icon -->
|
10 |
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/js/all.min.js"></script>
|
11 |
</head>
|
12 |
<body>
|
13 |
<div class="mic-container">
|
|
|
18 |
|
19 |
<div id="output" class="output-container"></div>
|
20 |
|
21 |
+
<div id="audioPlayerContainer" class="audio-player-container" style="display: none;">
|
22 |
+
<audio id="audioPlayer" controls></audio>
|
23 |
+
</div>
|
24 |
+
|
25 |
<!-- Script JS -->
|
26 |
<script src="{{ url_for('static', filename='js/design.js') }}"></script>
|
27 |
</body>
|