-
Notifications
You must be signed in to change notification settings - Fork 6
/
judge-signup.html
131 lines (117 loc) · 3.48 KB
/
judge-signup.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
---
tab: judging
layout: default
---
<script src="assets/js/judge-signup.js"></script>
<title>Ruffin Ridley Science Fair 2019 - judges signup</title>
<h2>Sign up for Science Fair judging</h2>
<p>I'm interested in being a judge for the Ruffin Ridley Science Fair on Saturday, May 8, 2021.</p>
<form class="registration-form">
<div class="form-row mt-3">
<div class="col-12">
<label for="name">Name</label>
<input
autocomplete="name"
class="form-control"
id="name"
type="text"
/>
</div>
</div>
<div class="form-row mt-3">
<div class="col-12">
<label for="yesEmail">Email</label>
<input
autocomplete="email"
class="form-control"
id="yesEmail"
type="email"
/>
</div>
</div>
<div class="form-row mt-3">
<div class="col-12">
<label for="expertise">Expertise</label>
<div id="expertise-helper-text">
Degree and area of expertise
</div>
<input
aria-describedby="expertise-helper-text"
class="form-control"
id="expertise"
type="text"
/>
</div>
</div>
<div class="form-check mt-3">
<input
aria-describedby="haveRuffinRidleyKids-helper-text"
class="form-check-input"
id="haveRuffinRidleyKids"
type="checkbox"
/>
<label for="haveRuffinRidleyKids">Are you the parent of any children currently attending Ruffin Ridley School?</label>
<div id="haveRuffinRidleyKids-helper-text">
</div>
</div>
<div class="form-row mt-3">
<div class="col-12">
<label for="kidsAndGrades">If yes, what grades are they in?</label>
<input
autocomplete="text"
class="form-control"
id="kidsAndGrades"
type="text"
/>
</div>
</div>
<div class="form-check mt-3">
<input
aria-describedby="nonRuffinRidleyKids-helper-text"
class="form-check-input"
id="nonRuffinRidleyKids"
type="checkbox"
/>
<label for="nonRuffinRidleyKids">Are you the parent of any children attending another Brookline K-8 school who are participating in the Ruffin Ridley Science Fair?</label>
<div id="nonRuffinRidleyKids-helper-text">
</div>
</div>
<div class="form-check mt-3 mb-3">
<input
class="form-check-input"
id="pastJudge"
type="checkbox"
/>
<label for="pastJudge">Have you been a Ruffin Ridley Science Fair judge in the past?</label>
</div>
<div class="container judging">
<div class="frame1">
<button id="form_submit_judge" type="submit" class="btn btn-primary">
Sign up
</button>
</div>
<div class="frame2">
<div class="success alert alert-success">
<span class="fa fa-check"></span>
<p>Thanks for signing up!</p>
<button class="ok btn btn-success" role="button">OK</button>
</div>
<div class="remove alert alert-success">
<span class="fa fa-check"></span>
<p>
OK, we will remove you from our mailing list. Sorry for any
inconvenience.
</p>
<button class="ok btn btn-success" role="button">OK</button>
</div>
<div class="fail alert alert-warning">
<span class="fa fa-times"></span>
<p>
Oops, there was a problem. The reason is: <span class="reason"></span>
</p>
<button class="ok btn btn-warning" role="button">OK</button>
</div>
</div>
</div>
</form>
<script src="assets/js/judge-signup.js"></script>