-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
681 lines (672 loc) · 25.5 KB
/
index.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
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
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
<!DOCTYPE html>
<html lang="en">
<head >
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>miniCal</title>
<!--:::::icon Calling:::::::-->
<link rel="icon" href="assets/img/Icon.png">
<!--::::: theme css :::::::-->
<link rel="stylesheet" href="assets/css/main.css">
<!--::::: main css :::::::-->
<link rel="stylesheet" href="assets/css/theme.css">
<link rel="stylesheet" href="assets/css/fontawesome.css">
<!--::::: style css :::::::-->
<link rel="stylesheet" href="assets/css/responsive.css">
<link rel="stylesheet" href=" https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/prism.css">
<link rel="stylesheet" href="assets/css/prism-line-numbers.css">
<!--:::::jquery 3.2.1 js :::::::-->
<script src="assets/js/jquery.3.3.1.min.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-5JMCT393M0"></script>
</head>
<style>
.banner-section {
background-color: #000060;
background-image: url(assets/img/backgroun.png);
background-position: center center;
background-size: cover;
}
</style>
<body data-spy="scroll" data-target=".navbar" data-offset="50">
<!--preload area start-->
<!-- Preloader -->
<div class="preloader">
<div class="spinner_wrap">
<div class="spinner"></div>
</div>
</div>
<!--preload area end-->
<!-- <div id="header"></div> -->
<!--:::::header area start:::::::-->
<div class="header-area navbar" id="header" >
<div class="container-fluid">
<div class="col-lg-3 col-md-4 align-self-center">
<div class="logo">
<a href="index.html" class="latterColor">
<!-- <img src="assets/img/Icon.png" alt=""> -->
miniCal
</a>
</div>
</div>
<div class="col-lg-5 col-md-4 d-none d-lg-block">
<div class="menu-wep">
<!-- <a href="http://marketplace.minical.io/" target="_blank" class="headA" >Marketplace</a> -->
<a href="contact.html" class="headA">Become a partner</a>
<a href="pricing.html" class="headA">Pricing</a>
</div>
</div>
<div class="col-lg-4 col-md-4 d-none d-lg-block text-right btn-2 gapp">
<a class="btn" style="color: #fff;" href="https://github.com/minical/minical">
<i class="fab fa-github center" style="font-size:35px"></i></a>
<a href="http://app.minical.io/auth/register" target="_blank" class="btn-2"><span>Sign Up</span></a>
<a href="http://app.minical.io/auth/login" target="_blank" class="btn-2"><span>Log In</span></a>
</div>
</div>
</div>
<div class="banner-section">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="banner-content">
<h1>Open Source Booking Management Software</h1>
<p>
miniCal is an open-source booking management platform for <br>all businesses
that requires booking/appointment scheduling. <!-- A user-friendly interface
of miniCal has already helped many businesses such as Hotels -->
</p>
<div class="bottom-btn">
<div class="btn-2">
<a href="http://demo.minical.io" target="_blank"><span>Demo</span></a>
<a href="https://github.com/minical/minical" target="_blank"><span>Source Code</span></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--:::::welcome area end:::::::-->
<!-- style="background-image: url(assets/img/ee5.png);" -->
<!--:::::service area start:::::::-->
<section class="services pt-100 pb-50 pb-60" id="services">
<div class="container">
<div class="row">
<div class="col-xl-6 mx-auto text-center">
<div class="section-title mb-100">
<h4>What's in the box</h4>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6">
<!-- Single Service -->
<div class="single-service">
<!-- <i class="fa fa-book"></i> -->
<h2>Intuitive Calendar</h2>
<p>Simple interface that provides quick overview of your property.</p>
</div>
</div>
<div class="col-lg-4 col-md-6">
<!-- Single Service -->
<div class="single-service">
<!-- <i class="fa fa-calendar"></i> -->
<h2>Reports and Analytics</h2>
<p>Get all kinds of reports which you can also export. </p>
</div>
</div>
<div class="col-lg-4 col-md-6">
<!-- Single Service -->
<div class="single-service">
<!-- <i class="fa fa-mobile"></i> -->
<h2>CRM</h2>
<p>Manage customer profiles along with their account balances.</p>
</div>
</div>
<div class="col-lg-4 col-md-6" id="gapping">
<!-- Single Service -->
<div class="single-service">
<!-- <i class="fa fa-calendar"></i> -->
<h2>Inventory</h2>
<p>Control room availabilities of your property.</p>
</div>
</div>
<div class="col-lg-4 col-md-6" id="gapping">
<!-- Single Service -->
<div class="single-service">
<!-- <i class="fa fa-calendar"></i> -->
<h2>Multi-language</h2>
<p>Customize and translate to any language all your content, including personalized emails.</p>
</div>
</div>
<div class="col-lg-4 col-md-6" id="gapping">
<div class="single-service">
<h2>Extension</h2>
<p>Explore the extensions that empower your business.</p>
</div>
</div>
<div class="col-lg-4 col-md-6" id="gapping">
<div class="single-service">
<h2>User Management</h2>
<p>Manage multiple user's roles and roles privilege.</p>
</div>
</div>
<!-- <div class="col-lg-4 col-md-6" id="gapping">
<div class="single-service">
<h2>Account Management</h2>
<p> </p>
</div>
</div> -->
<div class="col-lg-4 col-md-6" id="gapping">
<div class="single-service">
<h2>Invoices</h2>
<p>Creation and automatic delivery of the invoices to your clients by mail.</p>
</div>
</div>
</div>
</div>
</section>
<div class="tab-wep">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="product-tabs">
<input checked="checked" id="tab1" type="radio" name="pct" />
<input id="tab2" type="radio" name="pct" />
<input id="tab3" type="radio" name="pct" />
<input id="tab4" type="radio" name="pct" />
<input id="tab5" type="radio" name="pct" />
<input id="tab6" type="radio" name="pct" />
<nav>
<ul>
<li class="tab1">
<label for="tab1">Hotel</label>
</li>
<li class="tab2">
<label for="tab2">Hostel</label>
</li>
<li class="tab3">
<label for="tab3">Vacation Rental</label>
</li>
<li class="tab4">
<label for="tab4">Apartment</label>
</li>
<li class="tab5">
<label for="tab5">Car Rental</label>
</li>
<li class="tab6">
<label for="tab6">Office Space</label>
</li>
</ul>
</nav>
<section>
<div class="tab1">
<div class="row">
<div class="col-md-5">
<div class="sec-wep">
<h1>Instant <br>Deployment</h1>
<p>Deploy a bespoke solution for your business by using a pre-made JSON template, or by customizing your own </p>
</div>
</div>
<div class="col-md-7">
<center>
<pre class="line-numbers">
<code class="language-json">{
"name": "Hotel",
"version": "1.0.0",
"description": "",
"dependencies": {
"online_booking_engine" : "1.0.0",
"advance_deposit_report" : "1.0.0"
},
"settings": {
"automatic_email_confirmation" : false,
"automatic_email_cancellation" : false,
"send_booking_notes" : false,
"additional_email" : {
"send_copy_to_additional_emails" : false ,
"additional_company_emails" :"Mail ID"
},
"send_invoice_email_automatically" : false,
"hide_room_name" : false,
"display_tooltip" : true,
"make_guest_field_mandatory" : false,
"include_cancelled_noshow_bookings" : true,
"hourly_booking_enabled" : false,
"allow_free_bookings" : false,
"allow_booking_cancelled_with_balance" : false,
"restrict_booking_dates_modification" : false,
"restrict_checkout_with_balance" : false,
"auto_no_show" : true,
"force_room_selection" : true,
"hide_forecast_charges" : false,
"is_total_balance_include_forecast" : true,
"show_guest_group_invoice" : false,
"enable_new_calendar" : false,
"unit_name":{
"singular": "room",
"plural" : "rooms"
},
"unit_type_name" : {
"singular":"room type",
"plural": "room types"
}
}
}
</code>
</pre>
</center>
</div>
</div>
</div>
<div class="tab2">
<div class="row">
<div class="col-md-5">
<div class="sec-wep">
<h1>Instant <br>Deployment</h1>
<p>Deploy a bespoke solution for your business by using a pre-made JSON template, or by customizing your own </p>
</div>
</div>
<div class="col-md-7">
<center>
<pre class="line-numbers">
<code class="language-json">{
"name": "Hostel",
"version": "1.0.0",
"description": "",
"dependencies": {
"online_booking_engine" : "1.0.0",
"advance_deposit_report" : "1.0.0"
},
"settings": {
"automatic_email_confirmation" : false,
"automatic_email_cancellation" : false,
"send_booking_notes" : false,
"additional_email" : {
"send_copy_to_additional_emails" : false ,
"additional_company_emails" :"Mail ID"
},
"send_invoice_email_automatically" : false,
"hide_room_name" : false,
"display_tooltip" : true,
"make_guest_field_mandatory" : false,
"include_cancelled_noshow_bookings" : true,
"hourly_booking_enabled" : false,
"allow_free_bookings" : false,
"allow_booking_cancelled_with_balance" : false,
"restrict_booking_dates_modification" : false,
"restrict_checkout_with_balance" : false,
"auto_no_show" : true,
"force_room_selection" : true,
"hide_forecast_charges" : false,
"is_total_balance_include_forecast" : true,
"show_guest_group_invoice" : false,
"enable_new_calendar" : false,
"unit_name":{
"singular": "bed",
"plural" : "beds"
},
"unit_type_name" : {
"singular":"room type",
"plural": "room types"
}
}
}
</code>
</pre>
</center>
</div>
</div>
</div>
<div class="tab3">
<div class="row">
<div class="col-md-5">
<div class="sec-wep">
<h1>Instant <br>Deployment</h1>
<p>Deploy a bespoke solution for your business by using a pre-made JSON template, or by customizing your own </p>
</div>
</div>
<div class="col-md-7">
<center>
<pre class="line-numbers">
<code class="language-json">{
"name": "Vacation Rental",
"version": "1.0.0",
"description": "",
"dependencies": {
"online_booking_engine" : "1.0.0",
"advance_deposit_report" : "1.0.0"
},
"settings": {
"automatic_email_confirmation" : false,
"automatic_email_cancellation" : false,
"send_booking_notes" : false,
"additional_email" : {
"send_copy_to_additional_emails" : false ,
"additional_company_emails" :"Mail ID"
},
"send_invoice_email_automatically" : false,
"hide_room_name" : false,
"display_tooltip" : true,
"make_guest_field_mandatory" : false,
"include_cancelled_noshow_bookings" : true,
"hourly_booking_enabled" : false,
"allow_free_bookings" : false,
"allow_booking_cancelled_with_balance" : false,
"restrict_booking_dates_modification" : false,
"restrict_checkout_with_balance" : false,
"auto_no_show" : true,
"force_room_selection" : true,
"hide_forecast_charges" : false,
"is_total_balance_include_forecast" : true,
"show_guest_group_invoice" : false,
"enable_new_calendar" : false,
"unit_name":{
"singular": "room",
"plural" : "rooms"
},
"unit_type_name" : {
"singular":"room type",
"plural": "room types"
}
}
}
</code>
</pre>
</center>
</div>
</div>
</div>
<div class="tab4">
<div class="row">
<div class="col-md-5">
<div class="sec-wep">
<h1>Instant <br>Deployment</h1>
<p>Deploy a bespoke solution for your business by using a pre-made JSON template, or by customizing your own </p>
</div>
</div>
<div class="col-md-7">
<center>
<pre class="line-numbers">
<code class="language-json">{
"name": "Apartment",
"version": "1.0.0",
"description": "",
"dependencies": {
"online_booking_engine" : "1.0.0",
"advance_deposit_report" : "1.0.0"
},
"settings": {
"automatic_email_confirmation" : false,
"automatic_email_cancellation" : false,
"send_booking_notes" : false,
"additional_email" : {
"send_copy_to_additional_emails" : false ,
"additional_company_emails" :"Mail ID"
},
"send_invoice_email_automatically" : false,
"hide_room_name" : false,
"display_tooltip" : true,
"make_guest_field_mandatory" : false,
"include_cancelled_noshow_bookings" : true,
"hourly_booking_enabled" : false,
"allow_free_bookings" : false,
"allow_booking_cancelled_with_balance" : false,
"restrict_booking_dates_modification" : false,
"restrict_checkout_with_balance" : false,
"auto_no_show" : true,
"force_room_selection" : true,
"hide_forecast_charges" : false,
"is_total_balance_include_forecast" : true,
"show_guest_group_invoice" : false,
"enable_new_calendar" : false,
"unit_name":{
"singular": "unit",
"plural" : "units"
},
"unit_type_name" : {
"singular":"unit type",
"plural": "unit types"
}
}
}
</code>
</pre>
</center>
</div>
</div>
</div>
<div class="tab5">
<div class="row">
<div class="col-md-5">
<div class="sec-wep">
<h1>Instant <br>Deployment</h1>
<p>Deploy a bespoke solution for your business by using a pre-made JSON template, or by customizing your own </p>
</div>
</div>
<div class="col-md-7">
<center>
<pre class="line-numbers">
<code class="language-json">{
"name": "Car Rental",
"version": "1.0.0",
"description": "",
"dependencies": {
"online_booking_engine" : "1.0.0",
"advance_deposit_report" : "1.0.0"
},
"settings": {
"automatic_email_confirmation" : false,
"automatic_email_cancellation" : false,
"send_booking_notes" : false,
"additional_email" : {
"send_copy_to_additional_emails" : false ,
"additional_company_emails" :"Mail ID"
},
"send_invoice_email_automatically" : false,
"hide_room_name" : false,
"display_tooltip" : true,
"make_guest_field_mandatory" : false,
"include_cancelled_noshow_bookings" : true,
"hourly_booking_enabled" : true,
"allow_free_bookings" : false,
"allow_booking_cancelled_with_balance" : false,
"restrict_booking_dates_modification" : false,
"restrict_checkout_with_balance" : false,
"auto_no_show" : true,
"force_room_selection" : true,
"hide_forecast_charges" : false,
"is_total_balance_include_forecast" : true,
"show_guest_group_invoice" : false,
"enable_new_calendar" : false,
"unit_name":{
"singular": "vehicle",
"plural" : "vehicles"
},
"unit_type_name" : {
"singular":"vehicle type",
"plural": "vehicle types"
}
}
}
</code>
</pre>
</center>
</div>
</div>
</div>
<div class="tab6">
<div class="row">
<div class="col-md-5">
<div class="sec-wep">
<h1>Instant <br>Deployment</h1>
<p>Deploy a bespoke solution for your business by using a pre-made JSON template, or by customizing your own </p>
</div>
</div>
<div class="col-md-7">
<center>
<pre class="line-numbers">
<code class="language-json">{
"name": "Office Space",
"version": "1.0.0",
"description": "",
"dependencies": {
"online_booking_engine" : "1.0.0",
"advance_deposit_report" : "1.0.0"
},
"settings": {
"automatic_email_confirmation" : false,
"automatic_email_cancellation" : false,
"send_booking_notes" : false,
"additional_email" : {
"send_copy_to_additional_emails" : false ,
"additional_company_emails" :"Mail ID"
},
"send_invoice_email_automatically" : false,
"hide_room_name" : false,
"display_tooltip" : true,
"make_guest_field_mandatory" : false,
"include_cancelled_noshow_bookings" : true,
"hourly_booking_enabled" : true,
"allow_free_bookings" : false,
"allow_booking_cancelled_with_balance" : false,
"restrict_booking_dates_modification" : false,
"restrict_checkout_with_balance" : false,
"auto_no_show" : true,
"force_room_selection" : true,
"hide_forecast_charges" : false,
"is_total_balance_include_forecast" : true,
"show_guest_group_invoice" : false,
"enable_new_calendar" : false,
"unit_name":{
"singular": "room",
"plural" : "rooms"
},
"unit_type_name" :{
"singular": "room type",
"plural" : "room types"
}
}
}
</code>
</pre>
</center>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
</div>
<div class="web">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="learn_next">
<h1 class="text-center">Smart Calendar </h1>
<p class="text-center">Easy Drag-and-drop bookings.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<center><img src="assets/img/booking.png" id="img-weppt" /></center>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="bottom-btn" id="bttn-gap">
<div class="btn-2">
</div>
</div>
</div>
</div>
</div>
</div>
<!--:::::footer area start:::::::-->
<div class="footer-area">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="footer-gap">
<p class="m_color" id="p-5">Contact us at <a href="mailto:[email protected]" class="m_color" id="p-6">[email protected]
</a>
</p>
<div class="logo-f1" id="logo-change">
<a href="http://minical.io" class="latterColor">
<!-- <img src="assets/img/Icon.png" alt=""> -->
miniCal
</a>
</div>
<div class="icons-wep">
<ul class="icons-css">
<li> <a class="btn" href="https://github.com/minical/minical">
<i class="fab fa-github center" style="font-size:30px"></i></a>
</li>
<li> <a class="btn" href="https://github.com/minical/minical">
<i class="fab fa-discord center" style="font-size:30px"></i></a>
</li>
</ul>
</div>
<p class="fotter-wept">© Copyright 2018 - 2021 miniCal</p>
</div>
</div>
</div>
</div>
</div>
<!--:::::footer area end :::::::-->
<!--:::::jquery.waypoints.min.js :::::::-->
<script src="assets/js/jquery.waypoints.min.js"></script>
<!--:::::popper js :::::::-->
<script src="assets/js/popper.min.js"></script>
<!--:::::bootstrap js :::::::-->
<script src="assets/js/bootstrap.min.js"></script>
<!--:::::owl carousel js :::::::-->
<script src="assets/js/owl.carousel.min.js"></script>
<!--::::: google map js:::::::-->
<script src="https://maps.googleapis.com/maps/api/js"></script>
<!--:::::modal video btn js :::::::-->
<script src="assets/js/jquery-modal-video.min.js"></script>
<!--:::::slick nav mobile menu js :::::::-->
<script src="assets/js/jquery.slicknav.min.js"></script>
<!--:::::counter js :::::::-->
<script src="assets/js/jquery.counterup.js"></script>
<!--:::::main js :::::::-->
<script src="assets/js/main.js"></script>
<script src="assets/js/prism.js"></script>
<script src="assets/js/prism-line-numbers.js"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-5JMCT393M0');
</script>
<!-- <script>
$(function(){
$("#header").load("header.html");
$("#footer").load("footer.html");
});
</script> -->
<script>
$.ajax({
//chnage it when minical repo become public and the path will be /pankaj9296/minical/minical
url: ' https://api.github.com/repos/kamranahmedse/githunt',
data: {
format: 'json'
},
error: function() {
$('#info').html('<p>An error has occurred</p>');
},
dataType: 'jsonp',
success: function(data) {
var count = data.data.stargazers_count;
$("#star_rating").text(count);
},
type: 'GET'
});
</script>
</body>
</html>