-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCustomTour.php
More file actions
81 lines (72 loc) · 3.34 KB
/
CustomTour.php
File metadata and controls
81 lines (72 loc) · 3.34 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
<?php
include './init.php';
?>
<!-- First Banner -->
<div class="row jumbotron cover-trip tokyo_cover">
<h1 class="display-3 text-center cov-title" id="htitle" >Custom Tour
</h1>
</div>
<div class="jumbotron" id="tokyo">
<h1>Custom Tour Details : </h1>
<p class="paragraph">
If you wish to have Private tour anywhere in Japan. We are happy to assist you with that.
For the Custom Tour we need to go step by step. This Custom made Trip is from 1 Day - 15 Days.
First Step:
Our Travel Specialist will probe you for your interest, Places where you want to go, Time Frame, Budget, Activities you are interested in.
Preparing your Itennairy
After Listening you carefully our Professional Travel Coordinator will make your itinerary based on your interests.
We will not charge you anything for making the itinerary.
Confirmation:
Once We will be on the same page about your trip plan. You need to pay 30% of the total amount of the Trip cost in Advance to confirm your reservations.
Final Itinerary:
Approximately 9 days before you leave you will receive your confirmed
itinerary, customized contact information, and detail down to where you'll meet by your drivers and Guides.
Your Journey Begins with us :
Your Guide and Driver will Pick you Everyday to Unfold Great insight of Japan. We will make sure your trip should be memorable.
Cancellation Policy:
You need to pay 30% of total quoted price in Advance to book the trip before 2 weeks of the trip. Rest of 70% will be paid 3 days before trip starting date. Company Has to make reservations according to your itinerary.
In Case of Cancellation 30% is not refundable
.
</p>
<form method="post" action="sendmail.php">
<div class="form-group row">
<label for="Name" class="col-sm-2 col-form-label">Name</label>
<div class="col-sm-10">
<input type="text" class="form-control-plaintext" id="name" name="name">
</div>
</div>
<div class="form-group row">
<label for="Email" class="col-sm-2 col-form-label">Email</label>
<div class="col-sm-10">
<input type="text" class="form-control-plaintext" id="Email" name="Email">
</div>
</div>
<div class="form-group row">
<label for="PhoneNumber" class="col-sm-2 col-form-label">Phone Number</label>
<div class="col-sm-10">
<input type="text" class="form-control-plaintext" id="PhoneNumber" name="PhoneNumber">
</div>
</div>
<div class="form-group row">
<label for="Count" class="col-sm-2 col-form-label">How many people are traveling</label>
<div class="col-sm-10">
<input type="text" class="form-control-plaintext" id="Count" name="Count">
</div>
</div>
<div class="form-group row">
<label for="Date" class="col-sm-2 col-form-label">Expected Dates</label>
<div class="col-sm-10">
<input type="date" class="form-control-plaintext" id="date" name="date">
</div>
</div>
<div class="form-group row">
<label for="Count" class="col-sm-2 col-form-label">Where do you want to go</label>
<div class="col-sm-10">
<input type="text" class="form-control-plaintext" id="Destination" name="Destination">
</div>
</div>
<!-- <a href="" class="btn btn-center btn-danger">Send</a> -->
<button class="btn btn-center btn-danger" type="submit">Send</button>
</form>
</div>
<?php include './footer.php'; ?>