-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (89 loc) · 2.98 KB
/
index.html
File metadata and controls
101 lines (89 loc) · 2.98 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ILR File Creator</title>
<link rel="stylesheet" href="styles/normalise.css" />
<link rel="stylesheet" href="styles/vanilla.css" />
<link rel="stylesheet" href="styles/style.css" />
<script src="renderer.js" defer></script>
</head>
<body>
<header class="flex-row">
<h1 class="flex-child-grow">ILR File Creator</h1>
<!-- TODO: read version number from schemafile -->
<p id="version-number" class="flex-child-static">2526.1.38.0</p>
</header>
<main>
<section id="input">
<h2>Input</h2>
<form id="uploadForm">
<div>
<label for="releaseVersion">Release Version</label>
<input type="text" id="releaseVersion" required />
</div>
<div>
<label for="csvFile">CSV File</label>
<input
type="file"
id="csvFile"
accept=".csv"
required
/>
</div>
<div>
<button type="submit">Upload CSV</button>
</div>
</form>
</section>
<section id="output">
<h2>Output</h2>
</section>
<section id="error-log">
<h2>Error Log</h2>
<div id="error-log-list"></div>
</section>
</main>
<hr />
<footer>
<details>
<summary>Version History</summary>
<table>
<thead>
<tr>
<th scope="col">Date</th>
<th scope="col">Version</th>
<th scope="col">Notes</th>
<th scope="col">Developer</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Aug 2025</th>
<td><pre>2526.1.38.0</pre></td>
<td>
<ul>
<li>2025 Schema</li>
<li>Package Updates</li>
<li>Styling</li>
</ul>
</td>
<td><a href="">Jason Warren</a></td>
</tr>
<tr>
<th scope="row">2024</th>
<td><pre>2024.x.x.x</pre></td>
<td>
<ul>
<li>Initial Build</li>
</ul>
</td>
<td><a href="">Shaughn Anderson</a></td>
</tr>
</tbody>
</table>
</details>
</footer>
</body>
</html>