-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathonline-booking.html
More file actions
executable file
·433 lines (424 loc) · 26.4 KB
/
online-booking.html
File metadata and controls
executable file
·433 lines (424 loc) · 26.4 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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Nexxchange - Online Booking & Payment</title>
<meta name="description" content="Nexxchange, The all-in-one Cloud Golf Club Management Software for golf clubs, hotels and restaurants">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta property="og:image" content="path/to/image.jpg">
<link rel="shortcut icon" href="img/favicon/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="img/favicon/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="img/favicon/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="img/favicon/apple-touch-icon-114x114.png">
<link rel="stylesheet" href="css/libs/bootstrap.min.css">
<link rel="stylesheet" href="css/libs/font-awesome.min.css">
<link rel="stylesheet" href="css/libs/animate.min.css">
<link rel="stylesheet" href="css/libs/slick.css">
<link rel="stylesheet" href="css/libs/magnific-popup.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/media.css">
<link rel="canonical" href="https://b2b.nexxchange.com" />
<meta name="theme-color" content="#000">
<meta name="msapplication-navbutton-color" content="#000">
<meta name="apple-mobile-web-app-status-bar-style" content="#000">
<meta name="google-site-verification" content="aRTSdMs3_zg2039LdR0IYQg-7HO2nNyGNTFfB5rHh3Sw" />
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-161130383-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-161130383-1');
</script>
<script>
window.pipedriveLeadboosterConfig = {
base: 'leadbooster-chat.pipedrive.com',
companyId: 7374118,
playbookUuid: '94f7919c-53cf-4e9b-98d9-d2b92a419fea',
version: 2
};
</script>
<script src="https://leadbooster-chat.pipedrive.com/assets/loader.js" async></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/emailjs-com@2/dist/email.min.js"></script>
<script type="text/javascript">
(function() {
emailjs.init("user_khsPgtnBTPky9AfksK3So");
})();
</script>
<script type="text/javascript">
window.onload = function() {
document.getElementById('contact-form').addEventListener('submit', function(event) {
event.preventDefault();
this.contact_number.value = Math.random() * 100000 | 0;
emailjs.sendForm('service_bfi866u', 'template_khw2yir', this)
.then(function() {
console.log('SUCCESS!');
alert('Your message has been sent successfully.');
}, function(error) {
console.log('FAILED...', error);
alert('Sorry there was a problem. Please try again.');
});
document.getElementById("myForm").style.display = "none";
});
}
</script>
<script type="text/javascript">
function adjust_textarea(h) {
h.style.height = "20px";
h.style.height = (h.scrollHeight) + "px";
}
</script>
</head>
<body data-spy="scroll" data-target=".navbar" data-offset="50" class="loaded">
<div class="site-content">
<div class="navbar-wrap">
<div class="navbar stick">
<div class="container">
<div class="row">
<div class="col-md-12">
<nav class="navbar-menu">
<div class="navbar-header">
<button class="collapsed navbar-toggle" type="button" data-toggle="collapse" data-target=".bs-example-js-navbar-scrollspy"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button>
</div>
<div class="logo-navbar">
<a href="index"><img src="img/logo.png" alt="logo"></a>
</div>
<div class="collapse bs-example-js-navbar-scrollspy">
<ul class="nav navbar-nav">
<li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Solutions <span class="caret"></span></a>
<ul class="dropdown-menu multi-column">
<div class="dropdown-column">
<div class="dropdown-column-title">golf</div>
<li><a href="members">Members</a></li>
<li><a href="greenfee">Greenfee</a></li>
<li><a href="mixed">Mixed</a></li>
<li><a href="municipal">Municipal</a></li>
<li><a href="golf-multisite">Multi Site</a></li>
</div>
<div class="dropdown-column">
<div class="dropdown-column-title">hotel</div>
<li><a href="city-hotel">City Hotels</a></li>
<li><a href="resorts">Golf Resorts</a></li>
<li><a href="hotel-multisite">Multi Site</a></li>
</div>
</ul>
</li>
<li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Features <span class="caret"></span></a>
<ul class="dropdown-menu multi-column">
<div class="dropdown-column">
<div class="dropdown-column-title">golf</div>
<li><a href="index#about">General</a></li>
<li><a href="teesheet">Tee Sheet</a></li>
<li><a href="online-booking">Booking & Payment</a></li>
<li><a href="crm">CRM</a></li>
<li><a href="pos">Point of Sale</a></li>
<li><a href="accounting">Accounting</a></li>
<li><a href="tournaments">Tournaments</a></li>
<li><a href="statistics">Reporting</a></li>
</div>
<div class="dropdown-column">
<div class="dropdown-column-title">hotel</div>
<li><a href="index#services">General</a></li>
<li><a href="roombooking">Room booking</a></li>
<li><a href="checkin">Check in/out</a></li>
<li><a href="housekeeping">Housekeeping</a></li>
<li><a href="roomrates">Room rates</a></li>
</div>
</ul>
</li>
</ul>
</div>
<div class="navbar-full">
<div class="collapse bs-example-js-navbar-scrollspy">
<ul class="nav navbar-nav">
<li><a href="index#video">Videos</a></li>
<li><a href="index#team">About</a></li>
<li><a href="pricing">Pricing</a></li>
<li><a class="bluefont" href="tel:00431606207010"></a></li>
</ul>
<ul class="nav navbar-nav">
<li class="sl-nav">
<ul>
<li><i class="sl-flag flag-uk"></i>
<ul>
<li><a href="online-booking-de"><i class="sl-flag flag-de"> </i> </a> <span class="active"></span> </li>
<li><a href="online-booking-fr"><i class="sl-flag flag-fr"> </i> </a> <span></span></li>
<li><a href="online-booking-it"><i class="sl-flag flag-it"> </i> </a> <span></span></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
</div>
</div>
</div>
</div>
</div>
<div class="headpage">
<div class="container-max">
<div class="row">
<div class="col-md-6">
<div class="headpage-title">
<h2>Real-time online bookings <br> Few clicks, lots of income</h2>
</div>
</div>
</div>
</div>
<div class="container-max">
<div class="headpage-image head-onlinebooking"></div>
</div>
<div class="container-max">
<div class="row">
<div class="col-md-5">
<div class="headpage-item-container">
<p>Meet the Portal, the Nexxchange's Marketplace for all your products and services</p>
</div>
<div class="headpage-button main-button"><a class="btn btn-default btn-block" role="button" onclick="openForm()"> Contact us </a></div>
<div class="headpage-button main-button"><a href="pricing" class="btn btn-default btn-block" role="button"> See pricing </a></div>
</div>
</div>
</div>
</div>
<div class="product">
<div class="container">
<div class="product-image-left image13"></div>
</div>
<div class="container">
<div class="row">
<div class="col-md-offset-7 col-md-5">
<div class="product-item">
<h2>Boost your sales through the Portal</h2>
<br>
<p>Offer golfers and agents a comfortable space to book and monitor their profile.</p>
<br>
<table class="table">
<tbody>
<tr>
<td><svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-caret-right-fill" fill="#63E0A4" xmlns="http://www.w3.org/2000/svg">
<path d="M12.14 8.753l-5.482 4.796c-.646.566-1.658.106-1.658-.753V3.204a1 1 0 0 1 1.659-.753l5.48 4.796a1 1 0 0 1 0 1.506z"/>
</svg></td>
<td>Allow members, guests and agents to directly book tee times, easily</td>
</tr>
<tr>
<td><svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-caret-right-fill" fill="#63E0A4" xmlns="http://www.w3.org/2000/svg">
<path d="M12.14 8.753l-5.482 4.796c-.646.566-1.658.106-1.658-.753V3.204a1 1 0 0 1 1.659-.753l5.48 4.796a1 1 0 0 1 0 1.506z"/>
</svg></td>
<td>The system automatically applies the prices according to the price rules you have specified</td>
</tr>
<tr>
<td><svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-caret-right-fill" fill="#63E0A4" xmlns="http://www.w3.org/2000/svg">
<path d="M12.14 8.753l-5.482 4.796c-.646.566-1.658.106-1.658-.753V3.204a1 1 0 0 1 1.659-.753l5.48 4.796a1 1 0 0 1 0 1.506z"/>
</svg></td>
<td>Develop partnerships with other golf courses, hotels and tour operators in your area</td>
</tr>
<tr>
<td><svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-caret-right-fill" fill="#63E0A4" xmlns="http://www.w3.org/2000/svg">
<path d="M12.14 8.753l-5.482 4.796c-.646.566-1.658.106-1.658-.753V3.204a1 1 0 0 1 1.659-.753l5.48 4.796a1 1 0 0 1 0 1.506z"/>
</svg></td>
<td>Benefit from a platform used by more than 100,000 golfers to seel green fees and all the other services available in your facilities.</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<div class="product">
<div class="container">
<div class="product-image-right image14"></div>
</div>
<div class="container">
<div class="row">
<div class="col-md-5">
<div class="product-item">
<h2>Offer your customers the best booking experience</h2>
<br>
<p>Increase your revenues by providing your clients a fluid and easy booking process.</p>
<br>
<table class="table">
<tbody>
<tr>
<td><svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-caret-right-fill" fill="#63E0A4" xmlns="http://www.w3.org/2000/svg">
<path d="M12.14 8.753l-5.482 4.796c-.646.566-1.658.106-1.658-.753V3.204a1 1 0 0 1 1.659-.753l5.48 4.796a1 1 0 0 1 0 1.506z"/>
</svg></td>
<td>Get new bookings from players even when your golf course is closed</td>
</tr>
<tr>
<td><svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-caret-right-fill" fill="#63E0A4" xmlns="http://www.w3.org/2000/svg">
<path d="M12.14 8.753l-5.482 4.796c-.646.566-1.658.106-1.658-.753V3.204a1 1 0 0 1 1.659-.753l5.48 4.796a1 1 0 0 1 0 1.506z"/>
</svg></td>
<td>A responsive edesign to adapt to the users's device (computer, smartphone, tablet)</td>
</tr>
<tr>
<td><svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-caret-right-fill" fill="#63E0A4" xmlns="http://www.w3.org/2000/svg">
<path d="M12.14 8.753l-5.482 4.796c-.646.566-1.658.106-1.658-.753V3.204a1 1 0 0 1 1.659-.753l5.48 4.796a1 1 0 0 1 0 1.506z"/>
</svg></td>
<td>Give your players the choice of payment method, or force online payment to reduce no-shows</td>
</tr>
<tr>
<td><svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-caret-right-fill" fill="#63E0A4" xmlns="http://www.w3.org/2000/svg">
<path d="M12.14 8.753l-5.482 4.796c-.646.566-1.658.106-1.658-.753V3.204a1 1 0 0 1 1.659-.753l5.48 4.796a1 1 0 0 1 0 1.506z"/>
</svg></td>
<td>Quickly install the Nexxchange's booking widget on your own website, and customize it easily</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<div class="product">
<div class="container">
<div class="product-image-left image27"></div>
</div>
<div class="container">
<div class="row">
<div class="col-md-offset-5 col-md-7">
<div class="product-item">
<h2>Online bookings made easy with online payments</h2>
<br>
<table class="table">
<tbody>
<tr>
<td><svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-caret-right-fill" fill="#63E0A4" xmlns="http://www.w3.org/2000/svg">
<path d="M12.14 8.753l-5.482 4.796c-.646.566-1.658.106-1.658-.753V3.204a1 1 0 0 1 1.659-.753l5.48 4.796a1 1 0 0 1 0 1.506z"/>
</svg></td>
<td> Various fees can be paid online in advance: greenfees, tournament fees, coaching lessons, e-carts, trollys, etc.
</td>
</tr>
<tr>
<td><svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-caret-right-fill" fill="#63E0A4" xmlns="http://www.w3.org/2000/svg">
<path d="M12.14 8.753l-5.482 4.796c-.646.566-1.658.106-1.658-.753V3.204a1 1 0 0 1 1.659-.753l5.48 4.796a1 1 0 0 1 0 1.506z"/>
</svg></td>
<td>Individual cancellation period rules: thus the “no show” risk for online payments is shifted to the customer </td>
</tr>
<tr>
<td><svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-caret-right-fill" fill="#63E0A4" xmlns="http://www.w3.org/2000/svg">
<path d="M12.14 8.753l-5.482 4.796c-.646.566-1.658.106-1.658-.753V3.204a1 1 0 0 1 1.659-.753l5.48 4.796a1 1 0 0 1 0 1.506z"/>
</svg></td>
<td>Dynamic pricing: when booking online, the correct individual price for the player will be automatically determined based on certain conditions (tee times, membership types, age, etc.) to generate higher utilisation
for the club.</td>
</tr>
<tr>
<td><svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-caret-right-fill" fill="#63E0A4" xmlns="http://www.w3.org/2000/svg">
<path d="M12.14 8.753l-5.482 4.796c-.646.566-1.658.106-1.658-.753V3.204a1 1 0 0 1 1.659-.753l5.48 4.796a1 1 0 0 1 0 1.506z"/>
</svg></td>
<td>Customer accounts – top up and online payments: players can top up their customer accounts online and then use them to pay green fees, ball machines, etc.</td>
</tr>
<tr>
<td><svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-caret-right-fill" fill="#63E0A4" xmlns="http://www.w3.org/2000/svg">
<path d="M12.14 8.753l-5.482 4.796c-.646.566-1.658.106-1.658-.753V3.204a1 1 0 0 1 1.659-.753l5.48 4.796a1 1 0 0 1 0 1.506z"/>
</svg></td>
<td>Relieving the secretariat of routine tasks: the more bookings and payments are made online, the more the reception will then be alleviated from routine tasks and can therefore focus on offering an even higher customer
service quality.</td>
</tr>
<tr>
</tr>
</tbody>
</table>
<div id="align-btn">
<div class="main-button"><a class="btn btn-default" role="button" href="Brochure_Online_Card_Accaptance.pdf"> Pricing and further information</a></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer class="footer">
<div class="footer-wrap">
<div class="container">
<div class="row">
<div class="col-md-2">
<div class="footer-title">
<h2>Brochures</h2>
<h3><a href="brochure_en.pdf">General</a></h3>
<h3><a href="Brochure_Online_Card_Accaptance.pdf">Online payments</a></h3>
<h3><a href="#">Ball machine</a></h3>
</div>
</div>
<div class="col-md-8">
<div class="footer-title">
<ul class="footer-icons">
<li><a href="mailto:support@nexxchange.com"><i class="fa fa-paper-plane"
aria-hidden="true"></i></a></li>
<li><a href="tel:+431606207010"><i class="fa fa-phone" aria-hidden="true"></i></a></li>
<li><a href="https://www.linkedin.com/company/nexxchange-ag"><i class="fa fa-linkedin"
aria-hidden="true"></i></a></li>
<li><a href="https://www.facebook.com/nexxchange"><i class="fa fa-facebook-f"
aria-hidden="true"></i></a></li>
</ul>
<div class="logo-footer">
<a href="index"><img src="img/logo_white.png" alt="logo"></a>
</div>
</div>
</div>
<div class="col-md-2 legal">
<div class="footer-title">
<h2>Legal</h2>
<h3><a href="legal">Legal disclosure</a></h3>
<p>Copyright © <br>2013-2022. <br>All rights reserved. </p>
</div>
</div>
</div>
</div>
</div>
</footer>
<div class="form-popup" id="myForm">
<div class="form-content">
<div class="align-right"> <i class="fa fa-close" onclick="closeForm()"></i> </div>
<h2>Contact us</h2>
<form class="form-style-7" id="contact-form">
<input type="hidden" name="contact_number">
<ul>
<li>
<label for="name">Name</label>
<input type="text" name="user_name" maxlength="100">
<span>Enter your full name</span> </li>
<li>
<label for="email">Email</label>
<input type="email" name="user_email" maxlength="100">
<span>Enter a valid email address</span> </li>
<li>
<label for="phone">Phone</label>
<input type="text" name="user_phone" maxlength="100">
<span>Enter a valid phone number</span> </li>
<li>
<label for="company">Company</label>
<input type="text" name="user_company" maxlength="100">
<span>Enter your company's name</span> </li>
<li>
<label for="message">Message</label>
<textarea name="message"></textarea>
<span>Type your message here</span> </li>
<li>
<input type="submit" value="Send">
</li>
</ul>
</form>
</div>
</div>
<script type="text/javascript" src="https://maps.google.com/maps/api/js?key=AIzaSyDDuC8pr6YqiBr9wqfhNIJ56AqwzWKhiQo"></script>
<script src="js/libs/jquery.min.js"></script>
<script type="text/javascript" src="js/libs/bootstrap.min.js"></script>
<script type="text/javascript" src="js/libs/waypoints.min.js"></script>
<script type="text/javascript" src="js/libs/slick.min.js"></script>
<script type="text/javascript" src="js/libs/magnific-popup.min.js"></script>
<script type="text/javascript" src="js/common.js"></script>
<script>
function openForm() {
document.getElementById("myForm").style.display = "block";
}
function closeForm() {
document.getElementById("myForm").style.display = "none";
}
</script>
</body>
</html>