semalab / templates /index.html
Tri4's picture
Rename templates /index.html to templates/index.html
b44cf1a verified
<!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>
<!-- Style 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="startButton">
<img src="https://cdn-icons-png.flaticon.com/512/25/25682.png" alt="" width="50" height="50">
</button>
<small>Tap to Record</small>
</div>
<div id="output"></div>
<div class="buttons">
<button id="copyButton">Copy Text</button>
<button id="clearButton">Clear Text</button>
</div>
<div id="convert_text"></div>
</div>
</div>
<!-- Script JS -->
<script src="{{ url_for('static', filename='js/script.js') }}"></script>
</body>
</html>