-
Notifications
You must be signed in to change notification settings - Fork 330
/
submit.html
428 lines (356 loc) · 8.14 KB
/
submit.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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
<!-- TODO: FIX THIS DUMPSTER FIRE!!! -->
<style>
@import url('https://fonts.googleapis.com/css?family=Exo:400,700');
*{
margin: 0px;
padding: 0px;
}
body{
font-family: 'Exo', sans-serif;
}
textarea {
resize:none;
}
a {
color:white;
}
::-moz-selection { /* Code for Firefox */
color: white;
background-color: #5a3fcd;
}
::selection {
color: white;
background-color: #5a3fcd;
}
.context {
width: 100%;
position: absolute;
}
.context h1{
text-align: center;
color: #fff;
font-size: 2em;
}
.context h1left{
text-align: left;
color: #fff;
font-size: 2em;
padding-left: 50px;
text-decoration:bold;
}
.context h2{
text-align: center;
color: #fff;
font-size: 1.5em;
}
.context h2left{
text-align: left;
color: #fff;
font-size: 1.5em;
padding-left: 50px;
text-decoration:bold;
}
.context h3{
text-align: center;
color: #fff;
font-size: 1.17em;
}
.context h3left{
text-align: left;
color: #fff;
font-size: 1.17em;
padding-left: 50px;
text-decoration:bold;
}
.context h4{
text-align: center;
color: #fff;
font-size: 1em;
}
.context h4left{
text-align: left;
color: #fff;
font-size: 1em;
padding-left: 50px;
text-decoration:bold;
}
.context h5{
text-align: center;
color: #fff;
font-size: 0.83em;
}
.context h5left{
text-align: left;
color: #fff;
font-size: 0.83em;
padding-left: 50px;
text-decoration:bold;
}
.context h6{
text-align: center;
color: #fff;
font-size: 0.75em;
}
.context h6left{
text-align: left;
color: #fff;
font-size: 0.75em;
padding-left: 50px;
text-decoration:bold;
}
.context iframe{
text-align: center;
display:block;
color: #fff;
height: 700px;
width: 100%;
resize: both;
overflow: auto;
border-style: solid;
border-color:black;
border: 10px solid transparent
}
textarea {
background:#181818;
color:white;
font-family: 'Exo', sans-serif;
border-color:white;
border:2px solid;
border-radius:5px;
width:300px;
height:75px;
}
input {
background:#181818;
color:white;
font-family: 'Exo', sans-serif;
border-color:white;
border:2px solid;
border-radius:5px;
}
button {
background:#181818;
color:white;
font-family:Arial;
border-color:white;
border:1.5px solid;
border-radius:5px;
}
.area{
position:relative;
z-index:-1;
background-color: #ff4e00;
background-image: linear-gradient(315deg, #ff4e00 0%, #ec9f05 74%);
background-repeat: no-repeat;
background-size:cover;
background-height:400vh;
background-repeat:none;
background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);
width: 100%;
height:150vh;
}
.circles{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
.circles li{
position: absolute;
display: block;
list-style: none;
width: 20px;
height: 20px;
background: rgba(255, 255, 255, 0.2);
animation: animate 25s linear infinite;
bottom: -150px;
}
.circles li:nth-child(1){
left: 25%;
width: 80px;
height: 80px;
animation-delay: 0s;
}
.circles li:nth-child(2){
left: 10%;
width: 20px;
height: 20px;
animation-delay: 2s;
animation-duration: 12s;
}
.circles li:nth-child(3){
left: 70%;
width: 20px;
height: 20px;
animation-delay: 4s;
}
.circles li:nth-child(4){
left: 40%;
width: 60px;
height: 60px;
animation-delay: 0s;
animation-duration: 18s;
}
.circles li:nth-child(5){
left: 65%;
width: 20px;
height: 20px;
animation-delay: 0s;
}
.circles li:nth-child(6){
left: 75%;
width: 110px;
height: 110px;
animation-delay: 3s;
}
.circles li:nth-child(7){
left: 35%;
width: 150px;
height: 150px;
animation-delay: 7s;
}
.circles li:nth-child(8){
left: 50%;
width: 25px;
height: 25px;
animation-delay: 15s;
animation-duration: 45s;
}
.circles li:nth-child(9){
left: 20%;
width: 15px;
height: 15px;
animation-delay: 2s;
animation-duration: 35s;
}
.circles li:nth-child(10){
left: 85%;
width: 150px;
height: 150px;
animation-delay: 0s;
animation-duration: 11s;
}
@keyframes animate {
0%{
transform: translateY(0) rotate(0deg);
opacity: 1;
border-radius: 0;
}
100%{
transform: translateY(-1000px) rotate(720deg);
opacity: 0;
border-radius: 50%;
}
}
.main {
background: #fcc;
margin: 10px 0;
}
.side {
background: #fea;
}
.list {
background: #afd;
}
.main,
.side,
.list {
padding: 2%;
border-radius: 10px
}
@media ( min-width : 600px ){
.flexbox {
display: -webkit-flex;
display: flex;
}
.main {
margin: 0 10px;
-webkit-flex: 2;
flex: 2;
}
.side {
-webkit-flex: 1;
flex: 1;
}
}
.sub {
color:lightgreen;
}
h1 {
text-align: center;
margin: 35px 0 20px 0 !important;
}
* {
box-sizing: border-box;
}
/* Create two equal columns that floats next to each other
/* Clear floats after the columns */
</style>
</head>
<body>
<form target="_blank" action="https://formsubmit.co/[email protected]" method="POST">
<div class="form-group">
<div class="form-row">
<div class="col">
<div class="context">
<div class="context">
<h6>
<a href="/index.html">return home</a>
</h6>
<h1>submit a game</h1>
<h6>The game does NOT have to be made by you. And, it doesn't even have to be a game- it can just be a fun, interactive web program.<br><br>
HTML5, WebAssembly, and WebGL games are only currently supported.
</h6>
<br>
<h2>Required</h2>
<h6>
your username, how you want to be known (max. 25 characters)<br>
<input maxlength="25" type="text" name="username" class="form-control" required></input> <br><br>
title of game (max. 60 characters)<br>
<input maxlength="60" type="text" name="gametitle" class="form-control" required></input> <br> feel free to put "HACKED" or "Hack for PC" in the title if it is hacked, but please make the title as short as possible if you are adding anything. <br><br>
developer of game <br>
<input maxlength="50" type="text" name="devname" class="form-control" required></input> <br>
if you do not know what the developer of the game is, simply type "*unknown*" <br><br>
link to game / link game files <br>
<input maxlength="2048" type="text" name="gamelink" class="form-control" required></input> <br>
if you dont know where to upload your game files to so you can paste a link here, it is highly recommended to upload them to sites such as (anonfiles.com, filechan.org, letsupload.cc) <br><br>
<h2>
Not Required
</H2>
<h6>
Write Description <br>
<textarea maxlength="500" type="text" name="descriptionorinstructions" class="form-control">Feel free to write instructions, controls, or a brief description of your game here...
</textarea><br><br>
<h6>if you want to bypass these restrictions for a special game, feel free to email us at mathgames66 [[at]] mail [[dot]] com </h6><br>
<h3><button type="submit" class="btn btn-lg btn-dark btn-block">Submit Game</button></h3><br><br>
<h3>
(Upon clicking on "Submit Game" you will get this message. This is completely normal and is just there to make sure that you are not a robot.)
</h3><br>
<center>
<img src="https://mathgames66.github.io/confirm/ex.PNG" width="509" height="227">
</center>
<input type="hidden" name="_next" value="https://mathgames66.github.io/thankyou.html">
</h6>
</form><br><br>
<center>
<img src='https://www.free-website-hit-counter.com/c.php?d=9&id=131796&s=7' border='0' >
</center>
</div>
</div>
</div>
<div class="area" >
<ul class="circles">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div >