29 lines
651 B
HTML
29 lines
651 B
HTML
<!doctype html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="stylesheet" href="styles.css" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Tauri GST Record</title>
|
|
</head>
|
|
|
|
<body>
|
|
<main class="container">
|
|
<h1>POC 1A - Audio Recording</h1>
|
|
|
|
<section class="card">
|
|
<h2>Audio</h2>
|
|
|
|
<div class="actions">
|
|
<button id="start-audio-btn" type="button">Start audio</button>
|
|
<button id="stop-audio-btn" type="button" disabled>Stop
|
|
audio</button>
|
|
</div>
|
|
|
|
<pre id="audio-status">Ready.</pre>
|
|
</section>
|
|
</main>
|
|
<script type="module" src="main.ts" defer></script>
|
|
</body>
|
|
</html>
|