Initial commit
This commit is contained in:
commit
263f498563
13 changed files with 478 additions and 0 deletions
21
static/index.html
Normal file
21
static/index.html
Normal file
|
@ -0,0 +1,21 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Copyright (c) 2024 Julian Müller (ChaoticByte) -->
|
||||
<meta charset="utf-8">
|
||||
<link rel="icon" href="favicon.png">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="main.css">
|
||||
<title>Transcript Frontend</title>
|
||||
</head>
|
||||
<body>
|
||||
<button class="startBtn symbtn nodisplay" id="startBtn"></button>
|
||||
<button class="stopBtn symbtn nodisplay" id="stopBtn"></button>
|
||||
<div class="horizontal">
|
||||
<audio class="nodisplay" id="audioPrev" controls></audio>
|
||||
<button class="transcribeBtn symbtn nodisplay" id="transcribeBtn"></button>
|
||||
</div>
|
||||
<div class="transcript" id="transcript"></div>
|
||||
<script src="main.js" type="module"></script>
|
||||
</body>
|
||||
</html>
|
Reference in a new issue