-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
109 lines (106 loc) · 3.03 KB
/
Copy pathform.html
File metadata and controls
109 lines (106 loc) · 3.03 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
107
108
109
<!DOCTYPE html>
<html>
<head>
<title>Fortnite Form</title>
<link rel="stylesheet" type="text/css" href="form.css">
<script type="text/javascript" src="form.js"></script>
</head>
<body class="row">
<div class="faq col">
<div>
<h3>
FAQ:
</h3>
Coming Soon!
</div>
<br>
<div>
<h3>
Terms & Conditions
</h3>
Once you place an order, a booster will be assigned within 10 minutes of receiving your payment.
<br>
<br>
Our boosting roster consists of top 100 players.
</div>
</div>
<form class="col">
<p>
<h3>
Competitive mode
</h3>
<p>
<input class="check" type="radio" name="comp" id="comp" value="solo" checked onchange="update_total()">SOLO
<input class="check" type="radio" name="comp" id="comp" value="duo" onchange="update_total()">DUO
<input class="check" type="radio" name="comp" id="comp" value="squad" onchange="update_total()">SQUAD
</p>
</p>
<p>
<h3>
Platform
</h3>
<p>
<input class="check" type="radio" name="plat" id="plat" value="pc" checked onchange="update_total()">PC
<input class="check" type="radio" name="plat" id="plat" value="ps4" onchange="update_total()">PS4
<input class="check" type="radio" name="plat" id="plat" value="xbox" onchange="update_total()">XBOX ONE
</p>
</p>
<p>
<h3>
Wins:
</h3>
<p>
<input class="check" type="radio" name="wins_mode" id="wins_mode" value="solo" checked onchange="update_total()">SOLO
<input class="check" type="radio" name="wins_mode" id="wins_mode" value="duo" onchange="update_total()">DUO (+40% extra)
<input class="check" type="radio" name="wins_mode" id="wins_mode" value="squad" onchange="update_total()">SQUAD (+80% extra)
</p>
<p>
<input id="wins_amount" type="range" name="wins_amount" min="1" max="50" step="1" value="1" oninput="wins_slider(event)">
<div id="wins">1 win</div>
</p>
</p>
<p>
<h3>
Specials
</h3>
<p>
<input class="check" type="checkbox" name="9_more_special" id="9_more_special" onchange="update_total()">End game with 9 or more kills
</p>
<p>
<input class="check" type="checkbox" name="stream_special" id="stream_special" onchange="update_total()">Stream my boost
</p>
<p>
<input class="check" type="checkbox" name="old_booster_special" id="old_booster_special" onchange="update_total()">I want my old booster
</p>
</p>
<p>
<h3>
Total:
</h3>
<h2 id="total">
$10.00
</h2>
<h3>
Coupon:
</h3>
<p class="coupon_paragraph">
<input type="text" name="coupon" id="coupon" oninput="update_total()" placeholder="ENTER COUPON CODE HERE">
<br>
<br>
USE "FORTNITE1 FOR 10% DISCOUNT"
</p>
<script type="text/javascript" src="https://secure.skypeassets.com/i/scom/js/skype-uri.js"></script>
<div id="SkypeButton_Call_elojobbing_1">
<script type="text/javascript">
Skype.ui({
"name": "chat",
"element": "SkypeButton_Call_elojobbing_1",
"participants": ["elojobbing"],
"imageSize": 32
});
</script>
</div>
</p>
</form>
</body>
</html>