generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbooking.html
174 lines (167 loc) · 7.46 KB
/
booking.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
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
<!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">
<meta name="description" content="Goals five a side football league in Fife, Scotland">
<meta name="keywords" content="five a side,football,football leagues,fife,scotland">
<link href="./assets/css/index.css" rel="stylesheet">
<title>Goals five a side</title>
</head>
<body>
<header>
<div>
<div id="header">
<a href="index.html">
<h1 class="header-text">Goals! 5-A-Side Football</h1>
</a>
</div>
<nav>
<ul id="navigation-links">
<li>
<a href="booking.html" class="active">Book With Us</a>
</li>
<li>
<a href="gallery.html">Gallery</a>
</li>
<li>
<a href="league-table.html">League Tables</a>
</li>
<li>
<a href="index.html">Home</a>
</li>
</ul>
</nav>
</div>
<!-- this code for the hamburger menu was sourced from a website I have fully credited this in the readme file-->
<div id="hide-hamburger">
<div class="hamburger-menu">
<input id="menu__toggle" type="checkbox" />
<!-- the text inside this label is only placeholder text as the label is only required for the hamburger menu-->
<label class="menu__btn" for="menu__toggle">placeholder text
<span></span>
</label>
<ul class="menu__box">
<li>
<a class="menu__item" href="index.html">Home</a>
</li>
<li>
<a class="menu__item" href="league-table.html">League Tables</a>
</li>
<li>
<a class="menu__item" href="gallery.html">Gallery</a>
</li>
<li>
<a class="menu__item" href="booking.html">Book With Us</a>
</li>
</ul>
</div>
</div>
</header>
<div id="book-with-us">
<h2 class="form-header">Book with us</h2>
<form class="booking-form" method="post" action="https://formdump.codeinstitute.net/">
<label for="firstname" class="label-name">First Name</label>
<br>
<input type="text" id="firstname" name="first-name" class="text-inputs" placeholder="First Name" required>
<br>
<label for="lastname" class="label-name">Last Name</label>
<br>
<input type="text" id="lastname" name="last-name" class="text-inputs" placeholder="Last Name" required>
<br>
<label for="emailaddress" class="label-name"> Email Address</label>
<br>
<input type="email" id="emailaddress" name="email" class="text-inputs" placeholder="Email" required>
<br>
<label for="one-hour">One hour</label>
<input type="radio" id="one-hour" name="time-select" value="one-hour" checked>
<label for="two-hours">Two hours</label>
<input type="radio" id="two-hours" name="time-select" value="two-hour" required>
<br>
<label for="date">Select Date</label>
<br>
<input type="date" id="date" required>
<br>
<label for="time">Select Time</label>
<br>
<select id="time" name="time" size="1" required>
<option value="">Choose Time</option>
<option value="14:00">14:00</option>
<option value="15:00">15:00</option>
<option value="16:00">16:00</option>
<option value="17:00">17:00</option>
<option value="18:00">18:00</option>
<option value="19:00">19:00</option>
<option value="20:00">20:00</option>
<option value="21:00">21:00</option>
</select>
<br>
<input type="submit" value="Lets book!" class="lets-book">
<br>
<input type="reset" value="Reset form" class="reset-form">
</form>
</div>
<div id="enrol-a-team">
<h2 class="form-header">Join a league</h2>
<form class="booking-form" method="post" action="https://formdump.codeinstitute.net/">
<label for="fname" class="label-name">First Name</label>
<br>
<input type="text" id="fname" name="first-name" class="text-inputs" placeholder="First Name" required>
<br>
<label for="lname" class="label-name">Last Name</label>
<br>
<input type="text" id="lname" name="last-name" class="text-inputs" placeholder="Last Name" required>
<br>
<label for="email" class="label-name">Email</label>
<br>
<input type="email" id="email" name="email" class="text-inputs" placeholder="Email" required>
<br>
<label for="team-name" class="label-name">Team Name</label>
<br>
<input type="text" id="team-name" name="team-name" class="text-inputs" placeholder="Team Name" required>
<br>
<label>Select League</label>
<br>
<label for="under-16"> Under 16</label>
<input type="radio" id="under-16" name="age-selection" value="under-16" checked required>
<label for="over-16">Over 16</label>
<input type="radio" id="over-16" name="age-selection" value="over-16">
<label for="over-50">Over 50</label>
<input type="radio" id="over-50" name="age-selection" value="over-50">
<br>
<input type="submit" value="Lets join!" class="lets-book">
<br>
<input type="reset" value="Reset form" class="reset-form">
</form>
</div>
<footer>
<div id="footer">
<ul id="social-links">
<li>
<a href="http://facebook.com" target="blank" rel="noopener"
aria-label="Visit our Faceboook page (Opens in a new tab)"><i
class="fa-brands fa-facebook"></i></a>
</li>
<li>
<a href="http://twitter.com" target="blank" rel="noopener"
aria-label="Visit our Twitter page (Opens in a new tab)"><i
class="fa-brands fa-twitter"></i></a>
</li>
<li>
<a href="http://instagram.com" target="blank" rel="noopener"
aria-label="Visit our Instagram page (Opens in a new tab)"><i
class="fa-brands fa-instagram"></i></a>
</li>
<li>
<a href="http://youtube.com" target="blank" rel="noopener"
aria-label="Visit our Youtube page (Opens in a new tab)"><i
class="fa-brands fa-youtube"></i></a>
</li>
</ul>
</div>
</footer>
<!-- font awesome script-->
<script src="https://kit.fontawesome.com/0f99558fa2.js" crossorigin="anonymous"></script>
</body>
</html>