semabox-mms / templates /chatgpt.html
Tri4's picture
Create chatgpt.html
b25bd87 verified
raw
history blame contribute delete
755 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Audio Recorder & Transcriber</title>
<!-- Link to CSS -->
<link rel="stylesheet" href="{{ url_for('static', filename='css/chatgpt.css') }}">
</head>
<body>
<div class="container">
<button id="recordButton" class="record-button">Start Recording</button>
<audio id="audioPlayback" controls style="display: none;"></audio>
<button id="transcribeButton" style="display: none;">Transcribe</button>
<div id="transcriptionResult"></div>
</div>
<!-- Script JS -->
<script src="{{ url_for('static', filename='js/chatgpt.js') }}"></script>
</body>
</html>