forked from AlexAiden1974/mathgames66.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubmit.html
More file actions
131 lines (113 loc) · 3.25 KB
/
submit.html
File metadata and controls
131 lines (113 loc) · 3.25 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!--Which one of you messed up so badly I practically had to rewrite the whole file...-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Submit a Game - SchoolLinks</title>
<link
href="https://fonts.googleapis.com/css?family=Exo:400,700"
rel="stylesheet"
/>
<link rel="stylesheet" type="text/css" href="css/circles.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/colors.css" />
<link rel="stylesheet" type="text/css" href="css/halloween.css" />
</head>
<body>
<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. It can be any fun, interactive
web program.<br /><br />
Only HTML5, WebAssembly, and WebGL games are currently supported.
</h6>
<form
target="_blank"
action="https://formspree.io/f/mnnarlyp"
method="POST"
>
<h2>Required</h2>
<h6>Username (max. 25 characters)</h6>
<input
maxlength="25"
type="text"
name="username"
class="form-control"
required
/>
<h6>Game Title (max. 60 characters)</h6>
<input
maxlength="60"
type="text"
name="gametitle"
class="form-control"
required
/>
<small
>Feel free to add “HACKED” or “for PC” if applicable, but keep titles
concise.</small
>
<h6>Developer of Game</h6>
<input
maxlength="50"
type="text"
name="devname"
class="form-control"
required
/>
<small>If unknown, type “*unknown*”.</small>
<h6>Link to Game / Game Files</h6>
<input
maxlength="2048"
type="text"
name="gamelink"
class="form-control"
required
/>
<small>
If you need to host files, try sites like anonfiles.com, filechan.org,
or letsupload.cc.
</small>
<h2>Optional</h2>
<h6>Description or Instructions</h6>
<textarea
maxlength="500"
name="descriptionorinstructions"
class="form-control"
>
Feel free to write instructions, controls, or a brief description of your game here...
</textarea
>
<h6>
To bypass these limits for special games, email us at: mathgames66
[[at]] mail [[dot]] com
</h6>
<h3>
<button type="submit">Submit Game</button>
</h3>
<h3>
After submitting, you may see a CAPTCHA confirmation—this is normal
and just to prevent bots.
</h3>
<input type="hidden" name="_next" value="/thankyou.html" />
</form>
<br />
</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>
</body>
</html>