forked from koerismo/BeePKG-V2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
46 lines (43 loc) · 1.5 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
<!DOCTYPE html>
<html id="mainHTML" lang="en-US">
<head>
<title>BEEPKG-V3</title>
<meta property="og:title" content="BeePKG-V2-ReMade">
<meta property="og:description" content="A new version of BEEPKG.">
<meta name="theme-color" content="#4565c6">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" type="image/png" href="favicon.png"/>
<style>
/* Temporary CSS until I reimplement collapsing. */
/*rip him- never got around to doing that*/
#section-items > section { height: auto; }
</style>
</head>
<body>
<div id="container">
<span id="button-save">Changes Saved</span>
<h3>BeePKG ReMade</h3>
<div id="pkg-container"></div>
<section>
<button id="btn-download" onclick="tryGenerate()">Download zip</button>
</section>
</div>
<!-- https://github.com/eligrey/FileSaver.js -->
<script src="jszip/FileSaver.js"></script>
<script src="jszip/jszip.min.js"></script>
<!-- https://github.com/pieroxy/lz-string -->
<script src="assets/lz-string.min.js"></script>
<script type="module" src="assets/vtflib/Main.js"></script>
<script type="module" src="assets/index.js"></script>
<div id="div-side-bar">
<button id="button-zip-type-toggle">to .bee_pack</button>
<br />
<button id="button-merge-pack">Merge Packages</button>
<br />
<button id="button-discord-link">Join UCP Creators Discord</button>
<button id="button-restore-save">Load Save</button>
<br />
<button id="button-force-save">Start Save</button>
</div>
</body>
</html>