-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathquackhead.html
More file actions
49 lines (48 loc) · 2.82 KB
/
quackhead.html
File metadata and controls
49 lines (48 loc) · 2.82 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
<!doctype html>
<!--
Source code for this project is freely available at https://github.com/penguinscode/Quackhead
-->
<html>
<head>
<title>Quackhead - Duck Game Hat Pack Creation Tool</title>
<link href="flatui/css/vendor/bootstrap.min.css" rel="stylesheet">
<link href="flatui/css/flat-ui.css" rel="stylesheet">
<link rel="icon" type="image/png" href="icon.png" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/pixi.js/3.0.7/pixi.min.js"></script>
<script src="FileSaver.min.js"></script>
<script src="jszip.min.js"></script>
<script src="slowaes/cryptoHelpers.js"></script>
<script src="slowaes/jsHash.js"></script>
<script src="slowaes/aes.js"></script>
<script src="quackhead.js"></script>
</head>
<body>
<div style="margin-left: 25px">
<div style="margin-bottom: 5px">
<a href="instructions.html" target="_blank"><button type="button" class="btn btn-default" id="instructionsbutton">Instructions</button></a>
<button type="button" class="btn btn-default" id="addteambutton">Add Team</button>
<input type="file" id="fileInput" multiple accept="image/*" style="display:none">
<button type="button" class="btn btn-default" id="exportasmodpackbutton">Export as Modpack</button>
<button type="button" class="btn btn-default" id="exportashatfilesbutton">Export as .hat files</button>
</div>
<div id="modexportbox" style="display: none;margin-bottom: 5px;background-color: #eff0f2;position: relative;border-radius:6px;box-sizing: border-box;width: 500px;padding: 15px 15px 15px 15px">
<input type="text" class="form-control" id="modnamebox" placeholder="Name"></input>
<input type="text" class="form-control" id="moddescbox" placeholder="Description"></input>
<input type="text" class="form-control" id="modauthorbox" placeholder="Author (or your username)"></input>
<input type="text" class="form-control" id="modverbox" placeholder="Version"></input>
<button type="button" class="btn btn-default" id="downloadmodpackbtn">Download Exported Modpack</button>
</div>
<div id="errorbox" style="display: none;margin-bottom: 5px;background-color: #B20000;position: relative;border-radius:6px;box-sizing: border-box;width: 500px;padding: 15px 15px 15px 15px;color: #ffffff">
An error or other problem has occured, check the dev console (F12) for information.
</div>
<div class="row" id="teamboxcontainer">
<div id="teambox" style="float: left;width: 405px;padding-right: 15px;padding-left: 15px;">
<div class="tile" style="width: 385px;height: 274px">
<input type="text" style="display: inline;width: calc(100% - 50px)" class="form-control" placeholder="Enter Team Name"></input>
<button type="button" class="btn btn-default" style="" id="downloadmodpackbtn">X</button>
</div>
</div>
</div>
</div>
</body>
</html>