-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (23 loc) · 992 Bytes
/
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
<!DOCTYPE html>
<meta charset="utf-8">
<html lang="en">
<title>NBT PARSER</title>
<head>
<link rel="icon" type="image/png" href="assets/favicon.ico"/>
</head>
<body style="background-color:#4d4f52;">
<label for="openfile">Select a file:</label>
<input type="file" id="openfile" accept=".nbt" name="Open .NBT">
<input type="button" id="download" value="Download ALL">
<input type="button" id="download_selected" value="Download Selected (To be implemented)">
<input type="button" id="augment" value="+">
<input type="button" id="reduce" value="-">
<div id="loading" style="display: none;position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);">
<img src="assets/loading.svg" style="width: 500px;">
</div>
<div id="errors"></div>
<div id="main" style="width:100%;height:100%;">
</div>
</body>
</html>
<script src="./script.js"></script>