-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact-success.php
291 lines (252 loc) · 10.5 KB
/
contact-success.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
<?php
//start the session
session_start();
?>
<!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 Ltd - Contact Us (Success Page)</title>
<link href="fontawesome-free-5.7.2-web/css/all.css" rel="stylesheet" type="text/css">
<link href="css/back-to-top.css" rel="stylesheet">
<link href="css/misc.css" rel="stylesheet">
<link href="css/w3.css" rel="stylesheet">
<link href="css/mobile-menu-top.css" rel="stylesheet">
<link href="css/vlink.css" rel="stylesheet">
<script defer src="fontawesome-free-5.7.2-web/js/all.js"></script>
<script src="js/back-to-top.js"></script>
<script src="js/w3.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/statecity.js"></script>
<div class="thetop"></div>
<style>
* {
box-sizing: border-box;
}
.body {
width: 100%;
margin: 0;
background-image: none;
}
.container {
padding: 0 190px;
}
.parallax {
/* The image used */
background-image: url("images/contact-success-2.jpg");
/* Set a specific height */
min-height: 350px;
/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.subheader-h2 {
margin-top: 180px;
}
/* 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) {
.subheader-h2 {
margin-top: 190px;
}
.container {
padding: 0 30px;
}
.container-form {
padding: 20px;
}
}
/* On screens that are 700px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 750px) {
.subheader-h2 {
margin-top: 190px;
}
.container {
padding: 0 30px;
}
}
</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">
<button onclick="dropDownNav()" class="dropbtn">
Get a Quote <i class="fas fa-caret-down"></i></button>
<div id="myDropdown" class="dropdownnav-content">
<a href="quote-is-1.php">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" class="active">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-h2" style="width: 230px;">Message Received!</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="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">International Shipping</a>
<a href="quote-ec.php">Domestic Shipping</a>
<a href="quote-ss.php" class="active">Secure Storage</a>
</div>
</a>
<a href="about.html">About</a>
<a href="contact.php" class="active">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">
<!-- Smiling emoji -->
<div style="text-align: center; margin: 0 0 30px">
<img class="emoji" src="images/smiling-emoji2.jpg">
</div>
<!-- Container for Get a Quote form -->
<div style="padding-bottom: 0">
<!-- Thank you note -->
<div class="container-form" style="padding: 0">
<div >
<p class="success-message">
<span style="font: italic 600 1.03em 'Quicksand Medium', serif">
<?php echo $_SESSION['title'] ?>. <?php echo $_SESSION['firstname'] ?> <?php echo $_SESSION['lastname'] ?>,
</span><br>
We have received your message.<br>
Thank you for contacting us. We will get back to you soon with a reply.<br>
Please keep an eye on your inbox.<br>
Thank You
</p>
</div>
<!-- Get another quote -->
<div class="w3-center">
<div class="w3-bar" style="padding-top: 0">
<a href="contact.html" class="tryagain">Send another message</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 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 GetaQuote 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 GetaQuote 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-arrow-circle-up"></i>
</div>
</div>
</body>
<!-- footer -->
<footer style="margin: 10px 0 0">
<!-- 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">
<i class="footer-FB fab fa-facebook-f"></i>
</a>
<a target="_blank" href="https://www.instagram.com/vlinkexpresscourier">
<i class="footer-INSTA fab fa-instagram"></i>
</a>
<a target="_blank" href="https://www.twitter.com/vlinkexpresscourier">
<i class="footer-INSTA fab fa-twitter"></i>
</a>
<a target="_blank" href="https://www.linkedin.com/vlinkexpresscourier">
<i class="footer-LI fab fa-linkedin"></i>
</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.html" class="active">Contact</a></li>
</ul>
</div>
</footer>
</html>