-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathSubmissionOverview.html
More file actions
40 lines (39 loc) · 1.32 KB
/
SubmissionOverview.html
File metadata and controls
40 lines (39 loc) · 1.32 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Submissions Overview - Project Echo</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Submissions Overview</h1>
<div class="container">
<table>
<thead>
<tr>
<th>File Name</th>
<th>Detected Animals</th>
<th>Upload Date</th>
</tr>
</thead>
<tbody>
<tr>
<td class="file-name">audio_01.wav</td>
<td class="detected-animals">Koala, Cockatoo</td>
<td class="upload-date">28 April 2025, 10:15 AM</td>
</tr>
<tr>
<td class="file-name">forest_sound.mp3</td>
<td class="detected-animals">Dingo, Kangaroo</td>
<td class="upload-date">27 April 2025, 3:45 PM</td>
</tr>
<tr>
<td class="file-name">birdsong_early_morning.wav</td>
<td class="detected-animals">Kookaburra</td>
<td class="upload-date">27 April 2025, 9:20 AM</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>