-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtabelbook.html
237 lines (199 loc) · 6.37 KB
/
tabelbook.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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="assets/images/favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900&display=swap"
rel="stylesheet">
<title>Book a Table</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Additional CSS Files -->
<link rel="stylesheet" href="assets/css/fontawesome.css">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/owl.css">
<style>
.form {
background: #f1f1f1;
width: 470px;
margin: 0 auto;
padding-left: 50px;
padding-top: 20px;
}
.form fieldset {
border: 0px;
padding: 0px;
margin: 0px;
}
.form p.contact {
font-size: 12px;
margin: 0px 0px 10px 0;
line-height: 14px;
font-family: Arial, Helvetica;
}
.form input[type="text"] {
width: 400px;
}
.form input[type="email"] {
width: 400px;
}
.forminput[type="password"] {
width: 400px;
}
.form input.birthday {
width: 60px;
}
.form input.birthyear {
width: 120px;
}
.form label {
color: #000;
font-weight: bold;
font-size: 12px;
font-family: Arial, Helvetica;
}
.form label.month {
width: 135px;
}
.form input,
textarea {
background-color: rgba(255, 255, 255, 0.4);
border: 1px solid rgba(122, 192, 0, 0.15);
padding: 7px;
font-family: Keffeesatz, Arial;
color: #4b4b4b;
font-size: 14px;
border-radius: 5px;
margin-bottom: 15px;
margin-top: -10px;
}
.form input:focus,
textarea:focus {
border: 1px solid #ff5400;
background-color: rgba(255, 255, 255, 1);
}
.form .select-style {
-webkit-appearance: button;
-webkit-border-radius: 2px;
-webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
-webkit-padding-end: 20px;
-webkit-padding-start: 2px;
-webkit-user-select: none;
background-image: url(images/select-arrow.png),
-webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
background-position: center right;
background-repeat: no-repeat;
border: 0px solid #FFF;
color: #555;
font-size: inherit;
margin: 0;
overflow: hidden;
padding-top: 5px;
padding-bottom: 5px;
text-overflow: ellipsis;
white-space: nowrap;
}
.form .gender {
width: 410px;
}
.form input.buttom {
background: #4b8df9;
display: inline-block;
padding: 5px 10px 6px;
color: #fbf7f7;
text-decoration: none;
font-weight: bold;
line-height: 1;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
-moz-box-shadow: 0 1px 3px #999;
-webkit-box-shadow: 0 1px 3px #999;
box-shadow: 0 1px 3px #999;
text-shadow: 0 -1px 1px #222;
border: none;
position: relative;
cursor: pointer;
font-size: 14px;
font-family: Verdana, Geneva, sans-serif;
}
.form input.buttom:hover {
background-color: #2a78f6;
}
</style>
</head>
<body>
<!-- ** Preloader Start ** -->
<div id="preloader">
<div class="jumper">
<div></div>
<div></div>
<div></div>
</div>
</div>
<!-- ** Preloader End ** -->
<!-- Header -->
<header class="">
<nav class="navbar navbar-expand-lg">
<div class="container">
<a class="navbar-brand" href="index.html">
<h2>Carnival</h2>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive"
aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home
<span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item"><a class="nav-link" href="features.html">Features</a></li>
<li class="nav-item"><a class="nav-link" href="contact.html">Contact Us</a></li>
</ul>
</div>
</div>
</nav>
</header>
<br><br><br>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<div style="text-align: center;" style="margin-top: 20px;">
<h1>Welcome!</h1>
<h4>Fill the form below to book a table</h4>
</div>
<div class="form">
<form id="tableform" method="post" action="profile.html">
<p class="contact"><label for="date_of_birth">Name</label></p>
<input type="text" id="soruce" name="source" required="">
<p class="contact"><label for="destination">Table for how many persons</label></p>
<input id="destination" name="destination" required="" type="text"> <br>
<p class="contact"><label for="date_of_ride">Date of reservation</label></p>
<input id="date_of_ride" name="date_of_ride" required="" type="date"> <br>
<p class="contact"><label for="time_of_ride">Time of reservation</label></p>
<input id="time_of_ride" name="time_of_ride" required="" type="datetime"> <br>
<input class="buttom" name="submit" id="submit" tabindex="5" value="Book my table!" type="submit">
</form>
</div>
<script>
function myFunction() {
var checkBox = document.getElementById("myCheck");
var text = document.getElementById("text");
if (checkBox.checked == true) {
text.style.display = "block";
} else {
text.style.display = "none";
}
}
</script>
<!-- Additional Scripts -->
<script src="assets/js/custom.js"></script>
<script src="assets/js/owl.js"></script>
</body>
</html>