semabox-mms / templates /index.html
Tri4's picture
Create templates/index.html
5b117de verified
raw
history blame contribute delete
947 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Speech to Text Converter</title>
<!-- Link to CSS -->
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
</head>
<body>
<div class="main">
<div class="container">
<h1>Speech to Text</h1>
<div class="button">
<button id="recordButton">Start</button>
<small id="recordStatus">Tap to Record</small>
</div>
<div id="output"></div>
<div id="transcribeContainer" style="display: none;">
<button id="transcribeButton">Transcribe</button>
</div>
<div id="convert_text"></div>
</div>
</div>
<!-- Script JS -->
<script src="{{ url_for('static', filename='js/script.js') }}"></script>
</body>
</html>