-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
25 lines (24 loc) · 756 Bytes
/
Copy pathindex.php
File metadata and controls
25 lines (24 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php ?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Audio Recorder Online</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1>Audio Recorder Online</h1>
<b><a href="1.php">Click to view previous saved recordings</a></b>
<div id="controls">
<button id="recordButton">Record</button>
<button id="pauseButton" disabled>Pause</button>
<button id="stopButton" disabled>Stop</button>
</div>
<div id="formats">Format: .wav </div>
<h3>Recordings</h3>
<ol id="recordingsList"></ol>
<script src="js/recorder.js"></script>
<script src="js/app.js"></script>
</body>
</html>