forked from NorthernBUG/northernbug.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meeting_registration.html
70 lines (51 loc) · 2.22 KB
/
meeting_registration.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
---
layout: default
meeting: NorthernBUG 2
---
<!--
This form uses google forms
It's pretty easy:
- create the google form
- view the google form in entry mode
- inspect the fields and get the name - entry.XXXXXXX
- inspect and get the form action
- this happens in an inframe and redirects to submitted.html
-->
<h1>Meeting Registration Sign-Up Form</h1>
<h3><strong>Meeting:</strong> {{ page.meeting }}</h3>
<script type="text/javascript">var submitted=false;</script>
<iframe name="hidden_iframe" id="hidden_iframe" style="display:none;" onload="if(submitted) {window.location='/submitted';}"></iframe>
<form class="form" target="hidden_iframe" onsubmit="submitted=true;" action="https://docs.google.com/forms/d/e/1FAIpQLSfcisj4m3lb_VLwwVFT1ZilZ1peerzs4abTsCp5iLL9y56Lug/formResponse">
<label>Name</label>
<input name="entry.128836778" type="text" />
<label>Email*</label>
<input name="emailAddress" type="email" required />
<p>* Please use an academic email address if possible</p>
<label>Are you a student?</label><br>
<label class="container">Yes
<input type="radio" name="entry.750803095" value="Yes">
<span class="checkmark"></span>
</label>
<label class="container">No
<input type="radio" checked="checked" name="entry.750803095" value="No">
<span class="checkmark"></span>
</label>
<label>Institute</label>
<input name="entry.763118794" type="text" required />
<label>City</label>
<input name="entry.340491097" type="text" required />
<label>Dietary requirements</label>
<input name="entry.1598531525" type="text" required />
<label>If you would like to give a talk please give details below:</label>
<textarea name="entry.1402070781"></textarea>
<label>Are you happy to share your details with other attendees?</label><br>
<label class="container">Yes
<input type="radio" checked="checked" name="entry.2000014696" value="Yes">
<span class="checkmark"></span>
</label>
<label class="container">No
<input type="radio" name="entry.2000014696" value="No">
<span class="checkmark"></span>
</label>
<input type="submit" value="Register" />
</form>