-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form.html
56 lines (49 loc) · 1.82 KB
/
Form.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
<!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">
<title>Registration form</title>
</head>
<body>
<h1>Race Registration!</h1>
<form action="">
<div>
<label for="First">First Name</label>
<input type="text" id="First" name="firstname" placeholder="First name" required>
<label for="Last">Last Name</label>
<input type="text" id="Last" name="lasttname" placeholder="Last name" required>
</div>
<p>Select a Race: </p>
<div>
<input type="radio" name="race" id="funrun" value="funrun">
<label for="funrun">Fun Run 5k</label>
</div>
<div>
<input type="radio" name="race" id="half" value="half">
<label for="half">Half Marathon</label>
</div>
<div>
<input type="radio" name="race" id="full" value="full">
<label for="full">Full Marathon</label>
</div>
<div>
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
<label for="password">Password</label>
<input type="password" id="password" name="password" required>
</div>
<div>
<label for="division">Select Age Group</label>
<select name="division" id="division">
<option value="kids">Under 18</option>
<option value="ya">18-30</option>
<option value="adults">30-50</option>
<option value="seniors">Above 50</option>
</select>
</div>
<button>Register</button>
</form>
</body>
</html>