forked from frc1418/VictiScout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.html
42 lines (37 loc) · 1.21 KB
/
data.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Data</title>
<link rel="stylesheet" href="css/theme.css">
<link rel="stylesheet" href="css/data.css">
</head>
<body>
<main>
<section>
<div id="warning">No data found! Try submitting a completed form.</div>
<table>
<thead>
</thead>
<tbody>
</tbody>
</table>
</section>
<section id="processing">
<div id="input-container">
<label for="input-file" class="file-label">Choose Files</label>
<input id="input-file" type="file" accept="application/json,.json,text/csv,.csv" multiple></input>
</div>
<!-- This list will be populated by JS -->
<ul class="input-list"></ul>
<p>→</p>
<input type="text" id="output-file" placeholder="data" class="large">
<p>→</p>
<button id="csv-button">Make CSV</button>
<button id="transfer-button">Transfer Data</button>
</section>
<div id="delete-button">DELETE SELECTED</div>
</main>
<script src="js/data.js"></script>
</body>
</html>