-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
40 lines (36 loc) · 1.24 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
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Skin Pack Creator</title>
<link rel="icon" type="image/png" href="favicon.ico" />
<link rel="stylesheet" type="text/css" href="css/skin-info.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
</head>
<body>
<header>
<input type="text" placeholder="Skin Pack Name" spellcheck="false" />
<div style="clear: both"></div>
</header>
<main>
<h3>Skin</h3>
<h3>Skin Name</h3>
<h3>Skin Type</h3>
<footer>
<input id="upload-skin" type="file" accept="image/*" multiple />
<label for="upload-skin">Upload Skin</label>
<button id="download-skin-pack">Download Skin Pack</button>
<input id="import-skinpack" type="file" accept=".zip,.mcpack" />
<label for="import-skinpack">Import Skin Pack</label>
</footer>
</main>
<footer>
<p>Made by</p>
<img src="favicon.ico" class="icon-profile" />
<p>notavail</p>
</footer>
<script src="js/lib/FileSaver.min.js"></script>
<script src="js/lib/jszip.min.js"></script>
<script src="js/app.js" type="module"></script>
</body>
</html>