thank-you.php
22.2 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
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
<?php
// ini_set('display_errors', 1);
// ini_set('display_startup_errors', 1);
// error_reporting(E_ALL);
$request = $_SERVER['REQUEST_METHOD'];
$source = $_REQUEST['source'];
$email = $_REQUEST['email'];
$mobile = $_REQUEST['mobile'];
$fullmobile = "+91" . $mobile;
$clientIPAddress = $_SERVER['REMOTE_ADDR'];
if ($request !== 'POST') {
http_response_code(405);
echo 'Method Not Allowed';
echo '</br>';
echo "<a href='index.php'>Go Back</a>";
die;
}
if ($clientIPAddress == '180.151.246.211'){
die;
}
if ($_REQUEST['mobile'] == '') {
echo 'Please enter valid mobile number';
echo '</br>';
echo "<a href='index.php'>Go Back</a>";
die;
}
if (strlen($_REQUEST['mobile']) !== 10) {
echo 'Please enter valid mobile number';
echo '</br>';
echo "<a href='index.php'>Go Back</a>";
die;
}
session_start();
require_once 'send_leads.php';
$postData = new PostData();
if ((!isset($_COOKIE['formfilled'])) && isset($_REQUEST['mobile'])) {
$mailsent = $postData->callback();
setcookie('formfilled', 'yes');
setcookie('checkduplicate', $_REQUEST['mobile'], time() + (86400 * 7));
}
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Aashrayaa Eco City | Thank You</title>
<meta name="keywords" content="">
<meta name="">
<link rel="icon" href="images/favicon.webp" type="image/png" sizes="16x16">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css"
integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="css/bootstrap-theme.min.css" rel="stylesheet" type="text/css">
<link href="css/style.css?v=1.0" rel="stylesheet" type="text/css">
<link href="lightbox/light-box.css" rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/animate.min.css">
<link href="css/all.css" rel="stylesheet">
</head>
<body>
<header id="home">
<nav class="navbar navbar-default" id="hide-menu">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="col-md-1">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.php">
<img src="<?php echo $assetBase; ?>images/logo/logo.png">
</a>
<!-- <button class="btn btn-danger download1 btn-download visible-xs">Download
Brochure</button> -->
<img class="navbar-img mob-img" src="<?php echo $assetBase; ?>images/logo/logo-2.png">
</div>
</div>
<div class=" nav-contain col-md-10">
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<!-- <li><a href="#home" class="m-link">Home</a></li> -->
<li><a href="#overview" class="m-link">Overview</a></li>
<li><a href="#indulgence" class="m-link">Amenities</a></li>
<li><a href="#masterplan" class="m-link">Your World</a></li>
<li><button class="btn btn-danger download1 btn-download hidden-xs">Download
Brochure</button></li>
<!-- <button class="btn btn-danger download1 btn-download hidden-xs">Download Brochure</button> -->
<!-- <li><a href="#gallery" class="m-link">Gallery</a></li> -->
<!-- <li><a href="#tour" class="m-link">Virtual Tour</a></li> -->
<!-- <li><a href="#contactus" class="m-link">Contact Us</a></li> -->
</ul>
</div><!-- /.navbar-collapse -->
</div>
<div class="col-md-1">
<img class="navbar-img desk-img" src="<?php echo $assetBase; ?>images/logo/logo-2.png">
</div>
<!-- /.container-fluid -->
<!-- <div class="col-md-1 hidden-xs">
<div class="navbar-header">
<a class="navbar-brand" href="javascript:void(0)">
<img class="new" src="<?php echo $assetBase; ?>images/twghead.webp"
style="position: relative;right: 0px;width: 200px;">
</a>
</div>
</div> -->
</div>
</nav>
</header>
<!-- <section class="inner-banner">
<div class="container">
<div class="banner-txt-thank">
<h1><span>Thank</span> You!</h1>
</div>
</div>
</section> -->
<section class="thank-sec">
<div class="container">
<div class="wrap" style="padding:15px;height:auto !important;">
<?php
if (!$mailsent) {
?>
<span class="msgicon" aria-hidden="true">
<img src="./images/check-mark.png" alt="" class='tickmark'>
</span>
<!-- <h2 class="oops"><span>You're</span> All Set!</h2>
<h3 class="oops-greet" style="text-align:center;">Greetings from </h3> -->
<h3 class="oops-subtitle" style="text-align:center;">
Thank you.<br />
Our representatives will get in touch with you shortly.
</h3>
<a href="index.php" style="text-decoration: none;">
<h2 class="go-home">
<span class="" aria-hidden="true">
<img src="./images/arrow.png" class='arrowleft' alt=""> Go Back
</span>
</h2>
</a>
<?php
} else {
?>
<span class="msgicon" aria-hidden="true">
<img src="./images/check-mark.png" alt="" class='tickmark'>
</span>
<h3 class="oops-subtitle" style="text-align:center;">
Thank you.<br />
Our representatives will get in touch with you shortly.
</h3>
<a href="index.php" style="text-decoration: none;">
<h2 class="go-home">
<span class="" aria-hidden="true">
<img src="./images/arrow.png" class='arrowleft' alt=""> Go Back
</span>
</h2>
</a>
<?php
}
?>
</div>
</div>
</section>
<!-- <section class="footer-sec" id="footer">
<div class="container">
<div class="foote-wrap"> -->
<!-- <img src="<?php echo $assetBase; ?>images/logo.webp"> -->
<!--<img class="head-icon" src="<?php echo $assetBase; ?>images/head-icon.webp">-->
<!-- <div class="contacwrap">
<p>
For any inquiries, questions, or to register your interest, please contact us using the details
below
</p>
<ul class="address"> -->
<!-- <li><i class="fas fa-phone"></i> 08044334469</li> -->
<!-- <li><i class="fas fa-building"></i> Codename New You , Opp. to Thakur Public School, Thakur
Village,
Kandivali East, Mumbai, Maharashtra 400101
</li>
</ul> -->
<!-- <p style="margin-top: 0;">
By submitting your details you agree to the our
<a class="disc-btn" href="terms-and-conditions.php">Terms & Conditions</a>
</p> -->
<!-- <div class="address-line"></div>
<ul class="reralist">
<li><img src="<?php echo $assetBase; ?>images/maha-rera.webp"
style="display: inline-block;width: 28px;position: absolute;margin-left: -24px;margin-top: -5px;">
MahaRERA Registration No: <b>P00000000000</b></li>
<li>
For more details visit the website: <a href="https://maharera.mahaonline.gov.in"
target="_blank">
https://maharera.mahaonline.gov.in</a>
</li>
</ul>
<div style="width: 100%;height: 30px;"></div> -->
<!-- <ul class="partner">
<li><img src="<?php echo $assetBase; ?>images/logo-the-wadhwa-group.webp"></li>
<li><img src="<?php echo $assetBase; ?>images/partner.webp" class=""></li>
</ul> -->
<!-- <div style="width: 100%;height: 30px;"></div> -->
<!-- <p class="copy-right"> </p>
</div>
</div>
</div>
</section> -->
<!-- <section class="rera-sec">
<div class="container">
<div class="patch hidden-xs">
<div class="col-md-12">
<div class="col-md-4">
<p>Copyright @ Century Novus <?php echo date('Y')?>. All rights reserved.</p>
</div>
<div class="col-md-4 text-center">
<img src="images/centurylogo-50.png" alt="">
</div>
<div class="col-md-4">
<p>RERA Reg No: PRM/KA/RERA/1251/309/PR/100423/005853</p>
</div>
<div class="col-md-12">
<p style="font-size: 9px; line-height: 12px;">
Privacy Policy: We collect information from you when you register on our site or fill
out a form. When filling
out a form on our site, for any of the above mentioned reasons, you may be asked to
enter your :
name, e-mail address and phone number. You may, however, visit our site anonymously. Any
of the
information we collect from you is to personalize your experience, to improve our
website and to
improve customer service. “Any data collected will not be shared with any 3rd party” in
the
privacy disclaimer section. *Terms and conditions apply.
</p>
</div>
</div>
</div>
</div>
<div class="patch visible-xs">
<div class="pd0 col-md-12">
<div class="pd0 col-md-9" style="text-align: left">
<div class="pd0 col-md-4">
<h3 class="footer-call"><i class="fa fa-phone" style="transform: rotate(93deg);"></i>
<a href="tel:08044334469"> 08044334469</a>
</h3>
</div>
<div class="pd0 col-md-8">
<p>RERA Reg No: PRM/KA/RERA/1251/309/PR/100423/005853</p>
<p>Copyright @ Century Novus <?php echo date('Y')?>. All rights reserved.</p>
</div>
<div class="pd0 col-md-12">
<p style="font-size: 9px; line-height: 12px;">
Privacy Policy: We collect information from you when you register on our site or fill
out a form. When filling
out a form on our site, for any of the above mentioned reasons, you may be asked to
enter your :
name, e-mail address and phone number. You may, however, visit our site anonymously. Any
of the
information we collect from you is to personalize your experience, to improve our
website and to
improve customer service. “Any data collected will not be shared with any 3rd party” in
the
privacy disclaimer section. *Terms and conditions apply.
</p>
</div>
</div>
<div class="col-md-3 text-center">
<img src="images/devlogo.webp" alt="">
</div>
</div>
</div>
</section> -->
<section class="rera-sec">
<div class="container-fluid">
<div class="patch hidden-xs">
<div class="col-md-12">
<div class="col-md-4">
<p>Copyright © Aashrayaa Eco City <?php echo date('Y') ?>. All rights reserved.</p>
</div>
<div class="col-md-4 text-center">
<img src="<?php echo $assetBase; ?>images/logo/logo.png" alt="">
</div>
<div class="col-md-4">
<p>RERA No : PRM/KA/RERA/1250/304/PR/180130/001424</p>
</div>
<div class="col-md-12">
<p class="rera-para">
For general information purposes only. While enough care is taken by Aashrayaa Eco City to ensure that information on the brochure is up to date, accurate and correct, readers are requested to make their independent inquiry before relying upon the same. In no event will Aashrayaa Eco City offer any warranty on the information made available or be liable for any loss or damage including without limitation, indirect or consequential loss or damage in connection with, the use of information in this brochure. By using or accessing the brochure, you agree with the Disclaimer without any qualification or limitation.
<span class="more-text"> Design, specifications, floor plans, brochures, interactive plans etc., are subject to change without prior notice. Computer-generated images, walkthroughs and rendered images are the artist's impression and are indicative of the actual designs. Concept images used are for representation purposes only. The contents of this brochure are meant to provide information to the readers of this brochure about ourselves including our various projects. They are only for general information and are subject to change. By no stretch of the imagination, the information on the brochure shall be construed as an advertisement and/or invitation or offer for sale. To find out more about projects/developments, please visit our sales office during working hours and get in touch with an authorized Aashrayaa Eco City sales representative. Please note that by sharing any of your contact details on the brochure, you are authorizing the Sales Response team of Aashrayaa Eco City (even if you are registered on the DND Registry) to provide information on our projects over Calls, SMS & Emails.</span>
<a class="see-btn" onclick="toggleText(this)">See more</a>
</p>
</div>
</div>
</div>
</div>
<div class="patch visible-xs">
<div class="pd0 col-md-12">
<div class="pd0 col-md-9" style="text-align: left">
<!-- <div class="pd0 col-md-4">
<h3 class="footer-call"><i class="fa fa-phone" style="transform: rotate(93deg);"></i>
<a href=""> </a>
</h3>
</div> -->
<div class="pd0 col-md-8">
<p>RERA No : PRM/KA/RERA/1250/304/PR/180130/001424</p>
<p>Copyright © Aashrayaa Eco City. All rights reserved.</p>
</div>
<div class="pd0 col-md-12">
<p class="rera-para">
For general information purposes only. While enough care is taken by Aashrayaa Eco City to ensure that information on the brochure is up to date, accurate and correct, readers are requested to make their independent inquiry before relying upon the same.
<span class="more-text"> In no event will Aashrayaa Eco City offer any warranty on the information made available or be liable for any loss or damage including without limitation, indirect or consequential loss or damage in connection with, the use of information in this brochure. By using or accessing the brochure, you agree with the Disclaimer without any qualification or limitation. Design, specifications, floor plans, brochures, interactive plans etc., are subject to change without prior notice. Computer-generated images, walkthroughs and rendered images are the artist's impression and are indicative of the actual designs. Concept images used are for representation purposes only. The contents of this brochure are meant to provide information to the readers of this brochure about ourselves including our various projects. They are only for general information and are subject to change. By no stretch of the imagination, the information on the brochure shall be construed as an advertisement and/or invitation or offer for sale. To find out more about projects/developments, please visit our sales office during working hours and get in touch with an authorized Aashrayaa Eco City sales representative. Please note that by sharing any of your contact details on the brochure, you are authorizing the Sales Response team of Aashrayaa Eco City (even if you are registered on the DND Registry) to provide information on our projects over Calls, SMS & Emails.</span>
<a class="see-btn" onclick="toggleText(this)">See more</a>
</p>
</div>
</div>
<div class="col-md-3 text-center">
<img src="<?php echo $assetBase; ?>images/logo/logo.png" alt="">
</div>
</div>
</div>
</section>
<script src="js/jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="lightbox/light-box.js"></script>
<script src="js/bootstrap.min.js" type="text/javascript"></script>
<script src="js/wow.js"></script>
<script src="js/jquery.validate.js"></script>
<script src="js/mobilevalidate.js"></script>
<script src="js/cookie.js"></script>
<script src="js/popout.js"></script>
<script>
// jQuery(document).ready(function($) {
//
// var delay = 4000;
// var url = 'http://twgardens.net/Views';
// setTimeout(function() {
// window.location = url;
// }, delay);
// });
</script>
<script type="text/javascript">
jQuery(document).ready(function($) {
// ---------------for model only-----
$(".click-price").click(function() {
$('#price-model').modal('show');
});
$(".interested").click(function() {
$('#interested').modal('show');
});
$(".i-am").click(function() {
$('#interested').modal('show');
});
});
</script>
<script>
jQuery(document).ready(function($) {
// Add smooth scrolling to all links
$(".m-link").on('click', function(event) {
// Make sure this.hash has a value before overriding default behavior
if (this.hash !== "") {
// Prevent default anchor click behavior
event.preventDefault();
// Store hash
var hash = this.hash;
// Using jQuery's animate() method to add smooth page scroll
// The optional number (800) specifies the number of milliseconds it takes to scroll to the specified area
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 800, function() {
// Add hash (#) to URL when done scrolling (default click behavior)
// window.location.hash = hash;
});
} // End if
});
$('.navbar-nav li').on('click', function() {
$('.navbar-nav li.active').removeClass('active');
$(this).addClass('active');
});
$(document).on('click', '.navbar-collapse.in', function(e) {
if ($(e.target).is('a') && ($(e.target).attr('class') != 'dropdown-toggle')) {
$(this).collapse('hide');
}
});
});
</script>
<script>
function toggleText(button) {
const moreText = button.previousElementSibling;
if (moreText.style.display === "none" || moreText.style.display === "") {
moreText.style.display = "inline";
button.textContent = "See less";
} else {
moreText.style.display = "none";
button.textContent = "See more";
}
}
// Ensure the hidden part is hidden on page load
window.onload = function() {
document.querySelectorAll(".more-text").forEach(el => el.style.display = "none");
};
</script>
</body>
</html>