Tri4 commited on
Commit
8d06e4a
·
verified ·
1 Parent(s): d9d787d

Update templates /index.html

Browse files
Files changed (1) hide show
  1. templates /index.html +22 -6
templates /index.html CHANGED
@@ -3,15 +3,31 @@
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>OpenAI Voice Transcription</title>
7
- <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
 
 
8
  </head>
9
  <body>
10
- <div class="container mt-5">
11
- <button type="button" class="btn btn-primary record">Record</button>
12
- <p class="output"></p>
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  </div>
14
 
15
- <script src="{{ url_for('static', filename='app.js') }}"></script>
 
16
  </body>
17
  </html>
 
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Speech to Text Converter</title>
7
+
8
+ <!-- Style CSS -->
9
+ <link rel="stylesheet" href="./style.css">
10
  </head>
11
  <body>
12
+
13
+ <div class="main">
14
+ <div class="container">
15
+ <h1>Speech to Text</h1>
16
+ <div class="button">
17
+ <button id="startButton"><img src="https://cdn-icons-png.flaticon.com/512/25/25682.png" alt="" width="50" height="50"></button>
18
+ <small>Tap to Record</small>
19
+ </div>
20
+ <div id="output"></div>
21
+ <div class="buttons">
22
+ <button id="copyButton">Copy Text</button>
23
+ <button id="clearButton">Clear Text</button>
24
+ </div>
25
+
26
+ <div id="convert_text"></div>
27
+ </div>
28
  </div>
29
 
30
+ <!-- Script jS -->
31
+ <script src="./script.js"></script>
32
  </body>
33
  </html>