-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (105 loc) · 6.29 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
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/css/bootstrap.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script src="https://ofc.quickfixtrips.fun/trips/js/wiz.js"></script>
<link rel="stylesheet" href="https://ofc.quickfixtrips.fun/trips/css/wiz.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css">
</head>
<body>
<div id="formsection" class="container justify-content-center">
<form id="msform" action="https://ofc.quickfixtrips.fun/trips/php/create_trip.php" method="POST">
<div class="form-card">
<div class="row">
<div class="col-7">
<h2 class="steps"></h2>
</div>
<div class="col-5">
<h2 class="steps">Step 1 - 3</h2>
</div>
</div>
<label class="fieldlabels"><h2 class="fieldlabels">About the planner</h2></label>
<input class="form-control input" type="text" name="firstname" placeholder="First Name">
<input type="text" name="lastname" placeholder="Last Name">
<input type="email" name="email" placeholder="Email Id">
<input type="text" name="telephone" placeholder="Phone">
</div>
<div class="form-card" style="padding:none;">
<div class="row">
<div class="col-7">
<h2 class="fs-title"></h2>
</div>
<div class="col-5">
<h2 class="steps">Step 2 - 3</h2>
</div>
</div>
<label class="fieldlabels"><h2 class="fieldlabels">Check-in Date</h2></label>
<input type="date" name="checkin" placeholder="" value="2022-06-01">
<label class="fieldlabels"><h2 class="fieldlabels">Check-out Date</h2></label>
<input type="date" name="checkout" placeholder="" value="2022-06-01">
<label class="fieldlabels"><h2 class="fieldlabels">Select a Villa by bedrooms</h2></label>
<select id="villaselect" class="form-control dropdowns" name="villaselect">
<option value="2">2 BDRMS</option>
<option value="3">3 BDRMS</option>
<option value="4">4 BDRMS</option>
<option value="5">5 BDRMS</option>
<option value="6">6 BDRMS</option>
</select>
</div>
<div class="form-card style='padding:0px'">
<div class="row">
<div class="col-7">
<h2 class="fs-title"></h2>
</div>
<div class="col-5">
<h2 class="steps">Step 3 - 3</h2>
</div>
</div>
<label class="fieldlabels"><h2 class="fieldlabels">Excursions</h2></label>
<select id="excursions" name="excursions" class="form-control dropdowns">
<option value="0">None</option>
<option value="2">ATV</option>
<option value="3">Party Boat BDRMS</option>
<option value="4">Shopping Spree</option>
</select>
<label class="fieldlabels"><h2 class="fieldlabels">Catering</h2></label>
<select id="catering" name="catering" class="form-control dropdowns">
<option value="0">None</option>
<option value="2">Catering Pkg A</option>
<option value="3">Catering Pkg B</option>
<option value="4">Car Service</option>
</select>
<label class="fieldlabels"><h2 class="fieldlabels">Salon Spa</h2></label>
<select id="salon" name="salon" class="form-control dropdowns">
<option value="0">None</option>
<option value="1">Salon Spa</option>
<option value="2">Service A</option>
<option value="3">Service B</option>
</select>
<input id="submitButton" type="submit" style="margin-top:15px;" class="btn btn-info action-button-lg btn-block" data-toggle="modal" data-target="#myModal" />
</form>
</div>
<!-- The Modal -->
<div class="modal fade" id="myModal">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<h4 class="modal-title">Processing the quote...</h4>
<!--<button type="button" class="close" data-dismiss="modal">×</button>-->
</div>
<!-- Modal body -->
<div class="modal-body">
<div id="outer" class="container-fluid d-inline-block"><div id="spinrow"><div style="position:relative;left:50%;" id="spin" class="spinner-border" role="status"><span class="sr-only"></span></div></div></div>
<p>Create as many trips as you like, just let us know which one to book using the "<b>Reserve this Trip</b>" button.</p>
</div>
<!-- Modal footer -->
<div class="modal-footer">
<!--<button type="button" class="btn btn-danger" data-dismiss="modal">Close</button>-->
</div>
</div>
</div>
</div>
</body>
</html>