-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (106 loc) · 2.83 KB
/
index.html
File metadata and controls
106 lines (106 loc) · 2.83 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Mappool Generator</title>
<link rel="stylesheet" href="styles/main.css " />
<link rel="stylesheet" href="styles/form.css" />
<link rel="stylesheet" href="styles/result.css" />
</head>
<body>
<section id="poolFormContainer" class="itemContainer">
<div class="itemWrapper">
<h2>NoMod Pool</h2>
<input
type="number"
min="0"
id="NoMod"
class="poolInput"
placeholder="how many?"
/>
</div>
<div class="itemWrapper">
<h2>Hidden Pool</h2>
<input
type="number"
min="0"
id="Hidden"
class="poolInput"
placeholder="how many?"
/>
</div>
<div class="itemWrapper">
<h2>HardRock Pool</h2>
<input
type="number"
min="0"
id="HardRock"
class="poolInput"
placeholder="how many?"
/>
</div>
<div class="itemWrapper">
<h2>DoubleTime Pool</h2>
<input
type="number"
min="0"
id="DoubleTime"
class="poolInput"
placeholder="how many?"
/>
</div>
<div class="itemWrapper">
<h2>FreeMod Pool</h2>
<input
type="number"
min="0"
id="FreeMod"
class="poolInput"
placeholder="how many?"
/>
</div>
<div class="itemWrapper">
<h2>TieBreaker Pool</h2>
<input
type="number"
min="0"
class="poolInput"
id="TieBreaker"
placeholder="how many?"
/>
</div>
<div class="itemWrapper hide">
<input type="number" class="poolInput" id="API" value="1" hidden />
</div>
</section>
<section id="mapFormContainer" class="itemContainer hide"></section>
<footer>
<div class="itemWrapper">
<input type="button" id="previous" value="Previous" class="hide" />
<input type="button" id="submit" onclick="submitPool()" value="Next" />
</div>
<span>
My Twitter:
<a href="https://twitter.com/M_RayhanH" target="_blank">
Rayhan Hakim
</a>
</span>
<span>
Forum:
<a
href="https://osu.ppy.sh/community/forums/topics/937671?start=7154592"
target="_blank"
>
osu! Forum
</a>
</span>
</footer>
<script src="scripts/main.js"></script>
<script src="scripts/button.js"></script>
<script src="scripts/form.js"></script>
<script src="scripts/request.js"></script>
<script src="scripts/card.js"></script>
</body>
</html>