-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquote-is-1.php
553 lines (488 loc) · 26.3 KB
/
quote-is-1.php
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
<?php
session_start(); // Session starts here.
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VLink Express Courier - Get a Quote (International Shipping - Shipment Origin)</title>
<!-- Icons font CSS-->
<link href="vendor/mdi-font/css/material-design-iconic-font.min.css" rel="stylesheet" media="all">
<link href="fontawesome-free-5.7.2-web/css/all.css" rel="stylesheet" type="text/css">
<link href="css/back-to-top.css" type="text/css" rel="stylesheet">
<link href="css/misc.css" type="text/css" rel="stylesheet">
<link href="css/intlTelInput.css" rel="stylesheet">
<link href="css/w3.css" type="text/css" rel="stylesheet">
<link href="css/mobile-menu-top.css" type="text/css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/util.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<link href="css/regform2.css" rel="stylesheet" type="text/css">
<link href="css/vlink.css" rel="stylesheet" type="text/css">
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Vendor CSS-->
<link href="vendor/select2/select2.min.css" rel="stylesheet" media="all">
<script defer src="fontawesome-free-5.7.2-web/js/all.js"></script>
<script src="js/jquery-1.11.3.min.js"></script>
<script src="js/back-to-top.js"></script>
<script src="js/w3.js"></script>
<script src="js/countrystatecity.js"></script>
<div class="thetop"></div>
<style>
* {
box-sizing: border-box;
}
.body {
width: 100%;
max-width: 1440px;
margin: 0;
background-image: none;
}
.container {
padding: 0 160px;
}
.parallax {
/* The image used */
background-image: url("images/is-pic.jpg");
/* Set a specific height */
min-height: 470px;
/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.subheader-top {
margin-top: 230px;
}
.subheader-bottom {
margin: 10px auto 30px;
}
.container-form input {
margin: 0;
font-size: 18px;
border: 0;
padding: 0;
vertical-align: middle;
}
/* On screens that are 1200px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 1200px) {
.container {
padding: 0 80px;
}
}
/* On screens that are 1000px wide or less, go from three columns to two columns */
@media screen and (max-width: 1000px) {
.container {
padding: 0 50px;
}
}
/* On screens that are 770px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 770px) {
.container {
padding: 0 25px;
}
.col-sm-6 {
width: 100%;
}
button.w3-button.w3-red-cancel {
margin: 5px 0 0;
width: 40%;
}
button.w3-button.w3-green-continue {
width: 40%;
}
}
</style>
</head>
<body class="body">
<div class="parallax">
<!-- Header with logo and navbar -->
<header>
<a href="index.html">
<img src="images/SVG/vlink-logo.svg" class="vlink-logo" alt="v-link logo"/>
</a>
<nav>
<ul class="navlist">
<li class="navlistitem"><a href="index.html">Home</a></li>
<li class="navlistitem"><a href="services.html">Services</a></li>
<li>
<div class="dropdownnav">
<a onclick="dropDownNav()" class="active dropbtn">
Get a Quote <i class="fas fa-caret-down"></i></a>
<div id="myDropdown" class="dropdownnav-content">
<a href="quote-is-1.php" class="active">International Shipping</a>
<a href="quote-ec.php">Domestic Shipping</a>
<a href="quote-ss.php">Secure Storage</a>
</div>
</div>
</li>
<li class="navlistitem"><a href="about.html">About</a></li>
<li class="navlistitem"><a href="contact.php">Contact</a></li>
<li class="navlistitem"><a href="/package-tracker/" target="_blank">Track</a></li>
</ul>
</nav>
</header>
<!-- Use any element to open/show the overlay navigation menu -->
<span>
<button class="openbtn" onclick="openNav()">
<i class="material-icons md-48">menu</i>
</button>
</span>
<!-- Subheader. Just below the navbar -->
<div class="subheader-top" style="width: 130px">Quote</div>
<!-- Subheader. Just below the navbar -->
<div class="subheader-bottom" style="width: 380px">International Shipping</div>
</div>
<!-- Mobile Menu -->
<!-- The overlay -->
<div id="myNav" class="overlay">
<!-- Button to close the overlay navigation -->
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<!-- Overlay content -->
<div class="overlay-content">
<a href="index.html">Home</a>
<a href="services.html">Services</a>
<a class="active w3-dropdown-click" style="padding-top: 0" onclick="myFunction()">
Get a Quote <i class="fas fa-caret-down"></i>
<div id="demo" class="dropdown">
<a href="quote-is-1.php" style="padding-top: 0" class="active">International Shipping</a>
<a href="quote-ec.php">Domestic Shipping</a>
<a href="quote-ss.php">Secure Storage</a>
</div>
</a>
<a href="about.html">About</a>
<a href="contact.php">Contact</a>
<a href="/package-tracker/" target="_blank">Track</a>
</div>
</div>
<!-- Outer Container that contains body content and pads it 300px left and right to <body> -->
<div class="container">
<!-- Inner Container -->
<div class="body-content">
<!-- Progress circles which indicates the steps of the form: -->
<div style="text-align:center; margin-bottom: 40px;">
<span class="step active"></span>
<span class="step"></span>
<span class="step"></span>
<span class="step"></span>
<span class="step"></span><br><br>
<span style="font: 1.25em Montserrat, sans-serif;">(Step 1 of 5)</span>
</div>
<!-- Container for Get a Quote form -->
<div class="w3-card-4">
<!-- International Shipping Quote form -->
<form class="container-form" method="post" style="padding-bottom: 0" action="quote-is-2.php">
<h3 class="h3-contactform">Please tell us about your Shipment.</h3>
<div class="formtitle">Shipment Origin</div>
<!-- Shipment Origin -->
<fieldset class="nofieldset" style="margin-bottom: 50px">
<legend style="margin-bottom: 10px" class="legend-middle"><span style="font-family: Roboto, serif">*</span> Indicates required fields</legend>
<div class="row">
<!-- Full Name -->
<div class="col-xs-12 col-sm-6">
<div class="wrap-input100 validate-input m-t-35 m-b-35" data-validate = "Enter Name">
<label for="name">Full Name (or Company) <span class="required">*</span></label>
<input class="input100" type="text" name="name" id="name" required>
<span class="focus-input100"></span>
</div>
</div>
<!-- Contact's Name -->
<div class="col-xs-12 col-sm-6">
<div class="wrap-input100 validate-input m-t-35 m-b-35" data-validate = "Enter Contact Name">
<label for="contact_name">Contact's Name <span class="required">*</span></label>
<input class="input100" name="contact_name" id="contact_name" type="text" required>
<span class="focus-input100"></span>
</div>
</div>
</div>
<div class="row">
<!-- Gender -->
<div class="col-xs-12 col-sm-6">
<div class="input-group m-t-39 m-b-35">
<div class="rs-select2 js-select-simple select--no-search">
<label for="gender">Gender <span class="required">*</span></label>
<select name="gender" id="gender" required>
<option disabled="disabled" selected="selected"></option>
<option>Male</option>
<option>Female</option>
</select>
<div class="select-dropdown"></div>
</div>
</div>
</div>
<!-- Title -->
<div class="col-xs-12 col-sm-6">
<div class="wrap-input100 validate-input m-t-35 m-b-35" data-validate = "Enter Title">
<label for="title">Title <span class="required">*</span></label>
<input class="input100" type="text" name="title" id="title" required>
<span class="focus-input100"></span>
</div>
</div>
</div>
<div class="row">
<!-- Telephone -->
<div class="col-xs-12 col-sm-6">
<div class="wrap-input100 validate-input m-t-35 m-b-35" data-validate = "Enter Telephone">
<label for="phone">Telephone <span class="required">*</span></label>
<input class="input100" type="tel" name="phone" id="phone" required>
<span class="focus-input100"></span>
</div>
</div>
<!-- Email -->
<div class="col-xs-12 col-sm-6">
<div class="wrap-input100 validate-input m-t-35 m-b-35" data-validate = "Enter Email">
<label for="email">Email <span class="required">*</span></label>
<input class="input100" type="email" name="email" id="email" required>
<span class="focus-input100"></span>
</div>
</div>
</div>
<div class="row">
<!-- Country -->
<div class="col-xs-12 col-sm-6">
<div class="input-group m-t-40 m-b-35">
<div class="rs-select2 js-select-simple select--no-search">
<label for="countryId">Country <span class="required">*</span></label>
<select name="country" class="countries" id="countryId" type="select" required>
<option disabled="disabled" selected="selected"></option>
</select>
<div class="select-dropdown"></div>
</div>
</div>
</div>
<!-- State -->
<div class="col-xs-12 col-sm-6">
<div class="input-group m-t-40 m-b-35">
<div class="rs-select2 js-select-simple select--no-search">
<label for="stateId">State <span class="required">*</span></label>
<select name="state" class="states" id="stateId" type="select" required>
<option selected="selected"></option>
</select>
<div class="select-dropdown"></div>
</div>
</div>
</div>
</div>
<div class="row">
<!-- City -->
<div class="col-xs-12 col-sm-6">
<div class="input-group m-t-39 m-b-35">
<div class="rs-select2 js-select-simple select--no-search">
<label for="cityId">City <span class="required">*</span></label>
<select name="city" class="cities" id="cityId" type="select" required>
<option selected="selected"></option>
</select>
<div class="select-dropdown"></div>
</div>
</div>
</div>
<!-- Zip Code -->
<div class="col-xs-12 col-sm-6">
<div class="wrap-input100 validate-input m-t-35 m-b-35" data-validate = "Enter Zip Code">
<label for="zip_code">Zip Code <span class="required">*</span></label>
<input class="input100" name="zip_code" id="zip_code" type="number" required>
<span class="focus-input100"></span>
</div>
</div>
</div>
<div class="row">
<!-- Street Address -->
<div class="col-xs-12 col-sm-12">
<div class="wrap-input100 validate-input m-t-35 m-b-35" data-validate = "Enter Street Address">
<label for="street_add">Street Address <span class="required">*</span></label>
<input class="input100" name="street_add" id="street_add" type="text" required>
<span class="focus-input100"></span>
</div>
</div>
</div>
<div class="row">
<!-- Street Address 2 -->
<div class="col-xs-12 col-sm-12">
<div class="wrap-input100 validate-input m-t-35 m-b-35">
<label for="street_add2">Street Address 2 (or Apartment, suite, floor, building, unit etc)</label>
<input class="input100" name="street_add2" id="street_add2" type="text">
<span class="focus-input100"></span>
</div>
</div>
</div>
<div class="row">
<!-- Department -->
<div class="col-xs-12 col-sm-6">
<div class="wrap-input100 validate-input m-t-35 m-b-35">
<label for="department">Department, c/o, etc.</label>
<input class="input100" name="department" id="department" type="text">
<span class="focus-input100"></span>
</div>
</div>
<!-- Residential Address? -->
<div class="col-xs-12 col-sm-6">
<div class="input-group m-t-39 m-b-35">
<div class="rs-select2 js-select-simple select--no-search">
<label for="residential_add">Is this a residential address? <span class="required">*</span></label>
<select name="residential_add" id="residential_add" required>
<option disabled="disabled" selected="selected"></option>
<option value="Yes">Yes</option>
<option value="No">No</option>
</select>
<div class="select-dropdown"></div>
</div>
</div>
</div>
</div>
<div class="row">
<!-- Shipping Option -->
<div class="col-xs-12 col-sm-6">
<div class="input-group m-t-51 m-b-35">
<div class="rs-select2 js-select-simple select--no-search">
<label for="shipping_options">Shipping Service Option <span class="required">*</span></label>
<select class="choice" name="shipping_options" id="shipping_options" required>
<option disabled="disabled" selected="selected"></option>
<option value="VLink Standard">VLink Standard</option>
<option value="VLink Worldwide Express">VLink Worldwide Express</option>
<option value="VLink Worldwide Express Plus">VLink Worldwide Express Plus</option>
<option value="VLink Worldwide TimeSaver">VLink Worldwide TimeSaver</option>
</select>
<div class="select-dropdown"></div>
</div>
</div>
</div>
<!-- Shipment Updates? -->
<div class="col-xs-12 col-sm-6">
<div class="input-group m-t-51 m-b-35">
<div class="rs-select2 js-select-simple select--no-search">
<label for="status_updates">Should we send shipment updates? <span class="required">*</span></label>
<select name="status_updates" id="status_updates">
<option disabled="disabled" selected="selected"></option>
<option value="Yes">Yes</option>
<option value="No">No</option>
</select>
<div class="select-dropdown"></div>
</div>
</div>
</div>
</div>
</fieldset>
<!-- Continue and Cancel Button -->
<div class="w3-center">
<div class="w3-bar">
<button type="submit" value="Next" class="w3-button w3-medium w3-green-continue">Next</button>
<button type="reset" class="w3-button w3-medium w3-red-cancel">Reset</button>
</div>
</div>
<!-- End of form -->
</form>
</div>
</div>
</div>
<!-- International Telephone Country Code -->
<script src="js/intlTelInput.js"></script>
<script>
var input = document.querySelector("#phone");
window.intlTelInput(input, {
initialCountry: "auto",
geoIpLookup: function(callback) {
$.get('https://ipinfo.io', function() {}, "jsonp").always(function(resp) {
var countryCode = (resp && resp.country) ? resp.country : "";
callback(countryCode);
});
},
utilsScript: "js/utils.js?1562189064761" // just for formatting/placeholders etc
});
</script>
<!-- JavaScript Full Screen Overlay Nav -->
<script>
/* Open */
function openNav() {
document.getElementById("myNav").style.height = "100%";
}
/* Close */
function closeNav() {
document.getElementById("myNav").style.height = "0%";
}
</script>
<!-- JavaScript for Top Nav Drop Down List for Get a Quote Link (for mobile menu) -->
<script>
function myFunction() {
var x = document.getElementById("demo");
if (x.className.indexOf("w3-show") === -1) {
x.className += " w3-show";
} else {
x.className = x.className.replace(" w3-show", "");
}
}
</script>
<!-- JavaScript for Top Nav Drop Down List for Get a Quote Link -->
<script>
/* When the user clicks on the button,
toggle between hiding and showing the dropdown content */
function dropDownNav() {
document.getElementById("myDropdown").classList.toggle("show");
}
// Close the dropdown if the user clicks outside of it
window.onclick = function(event) {
if (!event.target.matches('.dropbtn')) {
var dropdowns = document.getElementsByClassName("dropdownnav-content");
var i;
for (i = 0; i < dropdowns.length; i++) {
var openDropdown = dropdowns[i];
if (openDropdown.classList.contains('show')) {
openDropdown.classList.remove('show');
}
}
}
}
</script>
<!-- Scroll back to the top -->
<div class="scrolltop">
<div class="scroll icon">
<i class="scroll-icon fas fa-3x fa-angle-up"></i>
</div>
</div>
<script src="js/main.js"></script>
<!-- Jquery JS-->
<script src="vendor/jquery/jquery.min.js"></script>
<!-- Vendor JS-->
<script src="vendor/select2/select2.min.js"></script>
<!-- Main JS-->
<script src="js/global.js"></script>
</body>
<!-- footer -->
<footer>
<!-- Address and Phone number -->
<p class="footeradd">
3M, Microkatu, 70210 Kuopio, Finland, +358 9 42453389
</p>
<!-- Copyright -->
<p class="footercopyrite">
Copyright <i class="copyright far fa-copyright"></i> 2019 VLink Express Courier Ltd. All Rights Reserved.
</p>
<!-- Social Media icons -->
<div class="div-footer-followus">
<p>
<a target="_blank" href="https://www.facebook.com/vlinkexpresscourier">
<img src="images/facebook.png" class="footer-FB" alt="facebook icon">
</a>
<a target="_blank" href="https://www.instagram.com/vlinkexpresscourier">
<img src="images/instagram.png" class="footer-INSTA" alt="instagram icon">
</a>
<a target="_blank" href="https://www.twitter.com/vlinkexpresscourier">
<img src="images/twitter.png" class="footer-INSTA" alt="twitter icon">
</a>
<a target="_blank" href="https://www.linkedin.com/vlinkexpresscourier">
<img src="images/linkedin.png" class="footer-LI" alt="linkedin icon">
</a>
</p>
</div>
<!-- Footer Links -->
<div>
<ul class="footerlinks">
<li style="padding-left: 0" class="footerlinkitem"><a href="privacy.html">Privacy Policy</a></li>
<li class="footerlinkitem"><a href="terms.html">Terms</a></li>
<li class="footerlinkitem"><a href="about.html">About</a></li>
<li style="padding-right: 0" class="footerlinkitem"><a href="contact.php">Contact</a></li>
</ul>
</div>
</footer>
</html>