-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
59 lines (49 loc) · 2.22 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>
<head>
<title>Arma 3 Camo Mod Generator</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container">
<header>
<img src="logo_banner.png" alt="App Logo" class="logo">
<h1>Arma 3 Mod Generator</h1>
</header>
<form id="modForm">
<div class="form-group">
<label for="modName">Mod Name:</label>
<input type="text" id="modName" name="modName">
</div>
<div class="form-group">
<label for="authorName">Author Name:</label>
<input type="text" id="authorName" name="authorName">
</div>
<div class="form-group">
<label for="textureFile">Texture File:</label>
<input type="file" id="textureFile" name="textureFile" accept=".png">
</div>
<fieldset class="checkbox-group">
<legend>Included Addons</legend>
<label><input type="checkbox" name="baseUniform" checked disabled> Base Uniform</label>
<label><input type="checkbox" name="indepUniform"> Independents Uniform</label>
<label><input type="checkbox" name="civCoveralls"> Coveralls</label>
<label><input type="checkbox" name="assaultPack"> Assault Back Pack</label>
<label><input type="checkbox" name="carrierRig"> Carrier Rig</label>
<label><input type="checkbox" name="carrierRigSpecial"> Special Carrier Rig</label>
<label><input type="checkbox" name="helmetBlufor"> Combat Helmet</label>
</fieldset>
<fieldset class="checkbox-group">
<legend>Options</legend>
<label><input type="checkbox" name="blendUniform" checked> Blend Uniform with Normal</label>
</fieldset>
<div class="form-group">
<button type="button" id="createModButton">Create Mod</button>
</div>
<progress id="progressBar" value="0" max="100"></progress>
<span id="progressStatus"></span>
</form>
</div>
<script src="script.js"></script>
</body>
</html>