-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (49 loc) · 1.74 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
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="main.css">
<script src="lib/jszip.min.js"></script>
<script src="lib/FileSaver.min.js"></script>
<script src="gun-generator.js"></script>
<title>The Great Bean Shootout Custom Gun Generator</title>
</head>
<body>
<h1>The Great Bean Shootout Custom Gun Generator</h1>
<label for="gunNameInput">Gun Name</label>
<input type="text" id="gunNameInput" name="gunNameInput">
<br>
<br>
<label for="amountOfBulletsToShootInput">Amount of bullets to shoot</label>
<input type="number" id="amountOfBulletsToShootInput" name="amountOfBulletsToShootInput">
<br>
<br>
<label for="bulletsThatAreUsedInput">Bullets that are used</label>
<input type="number" id="bulletsThatAreUsedInput" name="bulletsThatAreUsedInput">
<br>
<br>
<label for="damageInput">Damage</label>
<input type="number" id="damageInput" name="damageInput">
<br>
<br>
<label for="holdToShootInput">Hold to shoot</label>
<input type="checkbox" id="holdToShootInput" value="false" name="holdToShootInput">
<br>
<br>
<label for="delayInput">Delay</label>
<input type="number" id="delayInput" name="delayInput">
<br>
<br>
<label for="shootBackwardsInput">Shoot Backwards</label>
<input type="checkbox" id="shootBackwardsInput" value="false" name="shootBackwardsInput">
<br>
<br>
<label for="imageInput">Image (MUST be .png)</label>
<input type="file" id="imageInput" name="image">
<br>
<br>
<br>
<button type="button" onclick="generate()">Generate (GunName).zip</button>
</body>
</html>