Create templates /index.html
Browse files- templates /index.html +17 -0
templates /index.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 |
+
<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>
|