-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
191 lines (177 loc) · 6.21 KB
/
form.html
File metadata and controls
191 lines (177 loc) · 6.21 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Registration Form</title>
<link rel="icon" type="image/x-icon" href="./assets/favicon.ico">
<link rel="stylesheet" href="./assets/styles.css">
</head>
<body>
<header>
<h1> Mighty Ducks Hockey League </h1>
<nav>
<a href="./index.html"> Home </a>
<a href="./about.html"> About MDHL </a>
<a href="./contact.html"> Contact </a>
<a href="./game.html"> Game Information</a>
<a href="./rules.html">Rules</a>
<a href="#">Registration</a>
</nav>
<div class="banner"></div>
</header>
<main>
<div class="title-box">
<h2 class="h2animation">Registration Form</h2>
</div>
<form action="./show_data.html" method="get">
<div class="form-box">
<fieldset>
<label for="firstName">Player's First Name: </label>
<input type="text" name="first_name" id="firstName">
<label for="lastName">Last Name: </label>
<input type="text" name="last_name" id="lastName">
</fieldset>
<fieldset>
<label for="streetAdress">Street Adress:</label>
<input type="text" name="street_adress" id="streetAdress">
</fieldset>
<fieldset>
<label for="city">City:</label>
<input type="text" name="city" id="city">
<label for="zipCode">Zip Code: </label>
<input type="number" name="zip_code" id="zipCode">
</fieldset>
<fieldset>
<label>
Birth Date:
<input type="date" name="birth_date">
</label>
</fieldset>
<fieldset>
Gender:
<label>
<input type="radio" name="gender" value="F">
Female
</label>
<label>
<input type="radio" name="gender" value="M">
Male
</label>
</fieldset>
<fieldset>
Grade:
<label>
<input type="radio" name="grade" value="pre">
Pre-School
</label>
<label>
<input type="radio" name="grade" value="1st">
1<span class="grade">st</span>
</label>
<label>
<input type="radio" name="grade" value="2nd">
2<span class="grade">nd</span>
</label>
<label>
<input type="radio" name="grade" value="3rd">
3<span class="grade">rd</span>
</label>
<label>
<input type="radio" name="grade" value="4th">
4<span class="grade">th</span>
</label>
<label>
<input type="radio" name="grade" value="5th">
5<span class="grade">th</span>
</label>
</fieldset>
<fieldset>
<h4>Which elementary school do you live near?</h4>
Closest school:
<select name="school">
<option disabled selected>Select school</option>
<option value="aj-katzenmaier">AJ Katzenmaier</option>
<option value="marjorie">Greenbay</option>
<option value="greenbay">Howard A Yeager</option>
<option value="north-elementary">Majorie P Hart</option>
<option value="howard">North Elemetary</option>
<option value="south">South Elementary</option>
</select>
</fieldset>
<fieldset>
<h4>What positions(s) do you normally play? (check all that apply)</h4>
<label>
<input type="checkbox" name="position1" value="forward">
Forward
</label>
<label>
<input type="checkbox" name="position2" value="midfield">
Midfield
</label>
<label>
<input type="checkbox" name="position3" value="defense">
Defense
</label>
<label>
<input type="checkbox" name="position4" value="goalkeeper">
Goalkeeper
</label>
</fieldset>
<fieldset>
<h4>Uniform Size</h4>
<label>
<input type="radio" name="size" value="YS">
Youth small
</label>
<label>
<input type="radio" name="size" value="YM">
Youth medium
</label>
<label>
<input type="radio" name="size" value="YL">
Youth large
</label>
<label>
<input type="radio" name="size" value="S">
Small
</label>
<label>
<input type="radio" name="size" value="M">
Medium
</label>
<label>
<input type="radio" name="size" value="L">
Large
</label>
<label>
<input type="radio" name="size" value="XL">
Extra large
</label>
</fieldset>
</div>
<h4>Permission to play</h4>
<p>I, the parent or guardian of the minor registrant, agree that the registrant and I will abide by all the
rules of the Mighty Ducks Hockey League (MDHL). In recognizing the possibility of physical injury
associated with hockey and in consideration for the “League” accepting the registrant for its
hockey programs and activities, I hereby release, discharge, and/or otherwise indemnify MDHL,
their employees and associated personnel and volunteers,including the facilities used for
practices and games, against any claim by or on behalf of the registrant as a result of the
registrant's participation in the programand/orbeing transported to or from MDHL sponsored
activities,which transportation
By signing below, I herebyagree andauthorizethe above.In addition, by signing below, lalso
acknowledge that I have read the cancellation policy and agree to its terms.</p>
<fieldset>
<label>Parent/Guardian Signature:</label>
<input type="text" name="signature">
</fieldset>
<fieldset>
<label>Date:</label>
<input type="date" name="date">
</fieldset>
<button type="submit" class="button">Send</button>
<!-- <input type="submit" class="button"> -->
</form>
</main>
</body>
</html>