-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreservation.html
More file actions
307 lines (273 loc) · 12.3 KB
/
Copy pathreservation.html
File metadata and controls
307 lines (273 loc) · 12.3 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
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
<!DOCTYPE html>
<html lang="en">
<!-- Mirrored from yevgenysim-turkey.github.io/touche/reservation.html by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Aug 2024 01:00:39 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=utf-8" /><!-- /Added by HTTrack -->
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/favicon-16x16.png" />
<link rel="manifest" href="assets/favicon/manifest.json" />
<link rel="mask-icon" href="assets/favicon/safari-pinned-tab.svg" color="#5bbad5" />
<link rel="shortcut icon" href="assets/favicon/favicon.ico" />
<meta name="msapplication-config" content="assets/favicon/browserconfig.xml" />
<meta name="theme-color" content="#ffffff" />
<!-- Libs CSS -->
<link rel="stylesheet" href="assets/css/libs.bundle.css" />
<!-- Theme CSS -->
<link rel="stylesheet" href="assets/css/theme.bundle.css" />
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com/" />
<link
href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet"
/>
<!-- Map -->
<link rel="stylesheet" href="../../api.mapbox.com/mapbox-gl-js/v2.3.1/mapbox-gl.css" />
<!--
Color mode switch
- For demonstration purposes only
- If you do not have the possibility to store user preferences on the backend, I highly recommend switching to a media query implementation: https://getbootstrap.com/docs/5.3/customize/color-modes/#building-with-sass
-->
<script>
(() => {
window.addEventListener('DOMContentLoaded', () => {
const colorModeSwitch = document.getElementById('colorModeSwitch');
if (colorModeSwitch) {
colorModeSwitch.addEventListener('change', () => {
document.body.setAttribute('data-bs-theme', colorModeSwitch.checked ? 'dark' : 'light');
});
}
});
})();
</script>
<!-- Title -->
<title>Via Via - Café & Restaurant</title>
</head>
<body>
<!-- NAVBAR -->
<nav class="navbar navbar-dark navbar-expand-lg navbar-togglable fixed-top">
<div class="container">
<!-- Navbar brand (mobile) -->
<a class="navbar-brand d-lg-none" href="index.html">Via Via</a>
<!-- Navbar toggler -->
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarCollapse"
aria-controls="navbarCollapse"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<!-- Navbar collapse -->
<div class="collapse navbar-collapse" id="navbarCollapse">
<!-- Navbar nav -->
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link " href="about-us.html">Sobre Nosotros</a>
</li>
<li class="nav-item">
<a class="nav-link " href="menu.html">Menu</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="reservation.html">Reservaciones</a>
</li>
</ul>
<!-- Navbar brand -->
<a class="navbar-brand d-none d-lg-flex mx-lg-auto" href="index.html"> Via Via </a>
<!-- Navbar nav -->
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link " href="news-and-events.html">Noticias y eventos</a>
</li>
<li class="nav-item">
<a class="nav-link " href="gallery.html">Galería</a>
</li>
<li class="nav-item">
<a class="nav-link " href="contact-us.html">Contáctanos</a>
</li>
</ul>
<!-- Color mode -->
<div class="form-check form-switch form-switch-color-mode ms-lg-3">
<input class="form-check-input" type="checkbox" role="switch" id="colorModeSwitch" />
<label class="form-check-label" for="colodeModeSwitch"></label>
</div>
</div>
</div>
</nav>
<!-- HEADER -->
<header data-jarallax data-speed=".8" style="background-image: url(assets/img/32.jpg)">
<div class="pt-10 pb-8 pt-md-15 pb-md-13 bg-black bg-opacity-50">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-md-8 col-lg-6 text-center">
<!-- Heading -->
<h1 class="display-6 fw-bold text-white">Reservaciones</h1>
</div>
</div>
</div>
</div>
</header>
<!-- RESERVATION -->
<section class="py-7 py-md-9 bg-light" id="reservation">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-md-8 col-lg-6 text-center">
<!-- Heading -->
<h2 class="mb-2">Hacer reserva en línea</h2>
<!-- Subheading -->
<p class="mb-6">Ingrese sus datos para hacer las reservaciones</p>
</div>
</div>
<div class="row justify-content-lg-center">
<div class="col-lg-8">
<!-- Form -->
<form>
<div class="row gx-3">
<div class="col-md-6">
<!-- Contact number (hidden) -->
<input type="hidden" name="contact_number" />
<!-- Full name -->
<div class="mb-3">
<label class="visually-hidden" for="user_name">Nombre Completo</label>
<input class="form-control" id="user_name" name="user_name" type="text" placeholder="Full name" required />
</div>
<!-- Phone number -->
<div class="mb-3">
<label class="visually-hidden" for="user_phone">Número Telefónico</label>
<input class="form-control" id="user_phone" name="user_phone" type="tel" placeholder="Phone number" required />
</div>
<!-- Email address -->
<div class="mb-3">
<label class="visually-hidden" for="user_email">Dirección de Email</label>
<input class="form-control" id="user_email" name="user_email" type="email" placeholder="Email address" required />
</div>
</div>
<div class="col-md-6">
<!-- Guests -->
<div class="mb-3">
<label class="visually-hidden" for="guests">Guests</label>
<select class="form-select" id="guests" name="guests" required>
<option value="1">1 person</option>
<option value="2" selected="">2 persons</option>
<option value="3">3 persons</option>
<option value="4">4 persons</option>
<option value="5">5 persons</option>
</select>
</div>
<!-- Date -->
<div class="mb-3">
<label class="visually-hidden" for="date">Date</label>
<input class="form-control" id="date" name="date" type="date" value="2021-02-12" required />
</div>
<!-- Time -->
<div class="mb-3">
<label class="visually-hidden" for="time">Time</label>
<input class="form-control" id="time" name="time" type="time" value="18:00" required />
</div>
</div>
<div class="col text-center">
<!-- Button -->
<button class="btn btn-outline-primary" type="submit">Reservar</button>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- PHONE -->
<section class="py-7 py-md-9">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8 text-center">
<div class="block-decoration block-decoration-1 py-3">
<!-- Text -->
<p class="mb-2 text-xs text-center">O puede llamarnos al :</p>
<!-- Phone -->
<a class="display-6 font-serif text-decoration-none text-body-emphasis" href="tel:+19876543210">+51 66 780199</a>
</div>
</div>
</div>
</div>
</section>
<!-- MAP -->
<section class="bg-light" style="height: 30rem">
<iframe src="https://www.google.com/maps/embed?pb=!1m23!1m12!1m3!1d242.81422221970885!2d-74.22661336757268!3d-13.160661872929326!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!4m8!3e6!4m0!4m5!1s0x91127df300eac9af%3A0x9df35ac875d2be0b!2sPortal%20Constituci%C3%B3n%204%2C%20Ayacucho%2005003!3m2!1d-13.1605914!2d-74.2264826!5e0!3m2!1ses!2spe!4v1724210623631!5m2!1ses!2spe" width="1500" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</section>
<!-- FOOTER -->
<footer class="py-7 py-md-9 bg-black">
<div class="container px-4">
<div class="row gx-7">
<div class="col-sm-4">
<!-- Heading -->
<h5 class="text-xs text-primary">Sobre Nosotros</h5>
<!-- Text -->
<p class="mb-6">
ViaVia Ayacucho ! Ubicados en la Plaza de Armas te ofrecemos una vista panorámica y única con una carta con platos hechos con insumos locales como la quinua y trucha y unos platos del mundo como nuestro estofado belga.
</p>
</div>
<div class="col-sm-4">
<!-- Heading -->
<h5 class="text-xs text-primary">Contact info</h5>
<!-- List -->
<ul class="list-unstyled mb-6">
<li class="d-flex mb-2">
<div class="fas fa-map-marker-alt me-3 mt-2 fs-sm"></div>
Portal Costitucion 4 Plaza de Armas, Ayacucho Perú
</li>
<li class="d-flex mb-2">
<div class="fas fa-phone me-3 mt-2 fs-sm"></div>
+51 66 780199
</li>
<li class="d-flex">
<div class="far fa-envelope me-3 mt-2 fs-sm"></div>
<a href="mailto:admin@domain.com">admin@domain.com</a>
</li>
</ul>
</div>
<div class="col-sm-4">
<!-- Heading -->
<h5 class="text-xs text-primary">Horas de Atención</h5>
<!-- Text -->
<div class="mb-3">
<div class="text-xs">Lunes - Viernes</div>
<div class="font-serif">10:00 AM - 11:00 PM</div>
</div>
<!-- Text -->
<div class="mb-6">
<div class="text-xs">Sábado - Domingos</div>
<div class="font-serif">12:00 AM - 10:00 PM</div>
</div>
</div>
</div>
<div class="row">
<div class="col-12">
<!-- Copyright -->
<div class="d-flex align-items-center">
<hr class="hr-sm me-3" style="height: 1px" />
© 2024 Via Via.
</div>
</div>
</div>
</div>
</footer>
<!-- TOAST -->
<div class="toast position-fixed bottom-0 start-50 translate-middle-x mb-3 mb-md-5" id="notification" role="alert" aria-live="assertive" aria-atomic="true">
<div class="d-flex">
<div class="toast-body mx-auto"></div>
</div>
</div>
<!-- JAVASCRIPT -->
<!-- Vendor JS -->
<script src="assets/js/vendor.bundle.js"></script>
<!-- Theme JS -->
<script src="assets/js/theme.bundle.js"></script>
</body>
<!-- Mirrored from yevgenysim-turkey.github.io/touche/reservation.html by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Aug 2024 01:00:39 GMT -->
</html>