-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterest.html
More file actions
239 lines (238 loc) · 10.2 KB
/
interest.html
File metadata and controls
239 lines (238 loc) · 10.2 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="img/icon/logo-small-64.png" type="image/x-icon" />
<title>Kosumi Go | Interest Form</title>
<link rel="stylesheet" href="css/util.css" />
<link rel="stylesheet" href="css/common.css" />
<link rel="stylesheet" href="css/interest.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WRXBCFQ1SH"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-WRXBCFQ1SH");
</script>
<body>
<div id="page-content">
<form
action="https://docs.google.com/forms/u/0/d/e/1FAIpQLSfsxEFCrgY21AYzPpxk8nUVDkoysmGCOSkXXYECYrUPr59eNg/formResponse"
method="POST"
>
<div id="top-img-box" class="input-pair">
<img loading="lazy" src="/img/go-classroom.jpg" alt="Go Classroom" />
<div>
<div class="page-title accented-text accented-style">Interest Form</div>
</div>
</div>
<div class="input-pair" id="info-box">
<div id="info-box-contents">
<div id="form-title">Online Kosumi Go School (KGS) New Student Interest Form</div>
<div id="form-description">
We are high school student-run non-profit that provides accessible Go lessons (taught
by students who has had impressive results in world class tournaments), and strives to
share the game and culture with everyone in the country! This means that we are trying
to expand online, and we are in need of teachers and volunteers. Profits will go
towards charity! <br /><br />
We appreciate your interest in Kosumi Go School, this is a non binding form that will
add you to our elist for more information about our school.
<br /><br />
KGS holds weekly Go classes taught by high level Go players. Price: Free trials
offered ($15/hr after trial)
<br /><br />
We will get back to you soon after this form is submitted, contact us for any
questions!
<br />
You can email us at <a href="mailto:kosumigo@gmail.com">kosumigo@gmail.com</a>
</div>
<div id="form-info-and-key">* Indicates Required Questions</div>
</div>
</div>
<div class="input-pair" data-required>
<label for="name">Name</label>
<input type="text" class="short" id="name" />
<div class="input-border"></div>
</div>
<div class="input-pair" data-required>
<label for="email">Email</label>
<input type="text" data-role="email" class="short" id="email" />
<div class="input-border"></div>
</div>
<div class="input-pair" data-required>
<label for="age-group">Age Group</label>
<div class="radio-group">
<input type="radio" name="age-group" id="age-18plus" />
<label for="age-18plus">
<span class="radio"></span>
<span class="radio-label">18 or above</span>
</label>
</div>
<div class="radio-group">
<input type="radio" name="age-group" id="age-under18" />
<label for="age-under18">
<span class="radio"></span>
<span class="radio-label"
><span class="radio-label-text">Under 18: </span>
<div>
<input type="number" id="age" min="5" max="17" id="under18age" />
<div class="input-border"></div>
</div>
</span>
</label>
</div>
</div>
<div class="input-pair" data-required>
<label for="experience">Previous Go Experience</label>
<div class="radio-group">
<input type="radio" name="experience-level" id="label1" />
<label for="label1">
<span class="radio"></span>
<span class="radio-label">Beginner (never played before)</span>
</label>
</div>
<div class="radio-group">
<input type="radio" name="experience-level" id="label2" />
<label for="label2">
<span class="radio"></span>
<span class="radio-label">Little (know the rules to Go)</span>
</label>
</div>
<div class="radio-group">
<input type="radio" name="experience-level" id="label3" />
<label for="label3">
<span class="radio"></span>
<span class="radio-label">More (played a few games)</span>
</label>
</div>
<div class="radio-group">
<input type="radio" name="experience-level" id="label4" />
<label for="label4">
<span class="radio"></span>
<span class="radio-label"
>Medium (played many games, ready to learn more advanced topics)</span
>
</label>
</div>
</div>
<div class="input-pair">
<label for="class-slot">Which time slot do you plan to attend?</label>
<div class="radio-group">
<input type="radio" name="class-slot" id="beg1" />
<label for="beg1">
<span class="radio"></span>
<span class="radio-label">Beginner 1 (Sunday 10-11 AM PST)</span>
</label>
</div>
<div class="radio-group">
<input type="radio" name="class-slot" id="beg2" />
<label for="beg2">
<span class="radio"></span>
<span class="radio-label">Beginner 2 (Saturday 3-4 PM PST)</span>
</label>
</div>
</div>
<div class="input-pair">
<label for="time-pref"
>Do you have another preferred time (we may consider adding popular suggestions)</label
>
<input type="text" class="short" id="time-pref" />
<div class="input-border"></div>
</div>
<div class="input-pair">
<label for="referrer">If someone referred you, who?</label>
<span class="subtitle"
>Once referred, you must attend 1 paid lesson for your referrer to get their free
lesson</span
>
<input type="text" class="short" id="referrer" />
<div class="input-border"></div>
</div>
<div class="input-pair" data-required>
<label for="interest-source">Where did you hear about us?</label>
<div class="radio-group">
<input type="radio" name="interest-source" id="source-wechat" />
<label for="source-wechat">
<span class="radio"></span>
<span class="radio-label">Wechat</span>
</label>
</div>
<div class="radio-group">
<input type="radio" name="interest-source" id="source-flyer" />
<label for="source-flyer">
<span class="radio"></span>
<span class="radio-label">Flyers</span>
</label>
</div>
<div class="radio-group">
<input type="radio" name="interest-source" id="source-friendfamily" />
<label for="source-friendfamily">
<span class="radio"></span>
<span class="radio-label">Friends / Family</span>
</label>
</div>
<div class="radio-group">
<input type="radio" name="interest-source" id="source-school" />
<label for="source-school">
<span class="radio"></span>
<span class="radio-label">School</span>
</label>
</div>
<div class="radio-group">
<input type="radio" name="interest-source" id="source-other" />
<label for="source-other">
<span class="radio"></span>
<span class="radio-label"
><span class="radio-label-text">Somewhere else: </span>
<div>
<input type="text" class="short" id="interest-source-other" />
<div class="input-border"></div>
</div>
</span>
</label>
</div>
</div>
<div class="input-pair">
<label for="questions">Any questions?</label>
<input type="text" id="questions" />
<div class="input-border"></div>
</div>
<input type="submit" value="Submit" class="disabled" />
</form>
<form style="display: none" id="google-form-data" data-role="form-responses">
<input type="hidden" name="entry.176090374" value="name" />
<input type="hidden" name="emailAddress" value="email" />
<input type="hidden" name="entry.1149145404" value="age" />
<input type="hidden" name="entry.1867300409" value="experience" />
<input type="hidden" name="entry.1770294672" value="timeslot" />
<input type="hidden" name="entry.1865839879" value="preftime" />
<input type="hidden" name="entry.2074967942" value="refferer" />
<input type="hidden" name="entry.1000486873" value="interest-src" />
<input type="hidden" name="entry.1007174456" value="questions" />
</form>
</div>
<footer>
<div
class="footer-item"
id="instagram-link"
href="https://www.instagram.com/kosumigoschool/"
></div>
<span>Website by <a href="//sandervonk.github.io/Projects/">Sander Vonk</a></span>
<div
class="footer-item"
id="facebook-link"
href="https://www.facebook.com/profile.php?id=100081977831709"
></div>
<span style="display: none" data-role="version-num">[-version-number-]</span>
</footer>
</body>
<script src="js/util.js?v=[version-number]"></script>
<script src="js/interest.js?[-version-number-]"></script>
</html>