-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
59 lines (59 loc) · 1.89 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
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>xbox360-retitler</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<script type="text/javascript" src="sha1-generator.js"></script>
<script type="text/javascript" src="xbox360-retitler.js"></script>
<script type="text/javascript" src="toast.js"></script>
<script type="text/javascript" src="app.js"></script>
</head>
<body>
<div id="root">
<div id="app-heading"><span>xbox360-retitler</span></div>
<div class="files-container">
<div id="files">
<div id="files-head" class="grid-container">
<span>#</span>
<div class="checkbox-head-container">
<input
id="checkbox-head"
name="checkbox-head"
type="checkbox"
/><label for="checkbox-head"> select all</label>
</div>
<span>file name</span>
<span>old title</span>
<span>new title</span>
<span>delete</span>
</div>
<div id="files-body">
<div id="file-upload" class="grid-container">
<span>drag and drop file(s) or</span>
<input
id="file-input"
type="file"
multiple
onchange="handleUploadFiles(this.files)"
/>
<label for="file-input">select file(s) to upload</label>
</div>
<div id="blank-filler"></div>
</div>
</div>
</div>
<div class="download-container">
<button
id="download-button"
type="button"
onclick="handleDownload()"
disabled
>
download selected file(s)
</button>
</div>
</div>
</body>
</html>