-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·47 lines (39 loc) · 1.74 KB
/
index.html
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
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TimeRewinder</title>
<link rel="stylesheet" href="src/css/ui.css">
</head>
<body>
<main>
<div class="container">
<button id="select-folder-btn"><img src="src/images/import.svg" alt="📥" />Import</button>
<button id="rewind-btn"><img src="src/images/rewind.svg" alt="🚀" />Rewind</button>
<button id="clear-btn"><img src="src/images/reset.svg" alt="🗑️" />Clear</button>
</div>
<div class="metadata-inputs">
<input id="headline-input" type="text" placeholder="Headline" style="width: 48.5%; min-width: 24em;"/>
<input id="description-input" type="text" placeholder="Description" style="width:48.5%; min-width: 24em;"/>
<input id="keywords-input" type="text" placeholder="Keywords" style="width: 98.5%;"/><br>
<input id="city-input" type="text" placeholder="Location" style="width: 31.75%; min-width: 15em;"/>
<input id="country-input" type="text" placeholder="Country" style="width: 31.75%; min-width: 15em;"/>
<input id="creator-input" type="text" placeholder="Creator" style="width: 31.75%; min-width: 15em;"/>
</div>
<table id="file-table">
<thead>
<tr>
<th style="width: 8em">DATE</th>
<th style="width: 7em;">TIME</th>
<th style="width: max-content">PATH</th>
<th style="width: 2em"></th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</main>
<script src="renderer.js"></script>
</body>
</html>