thank-you.php
10.1 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
<?php
session_start();
$name = $_REQUEST['fname'];
$mobile = $_REQUEST['mobile'];
$email = $_REQUEST['email'];
$message = $_REQUEST['message'];
if (ctype_alpha(str_replace(' ', '', $name)) === false) {
die;
}
if (!preg_match('/^[0-9]+$/', $_POST['mobile'])) {
die;
}
if (empty($name)) {
die;
}
if (empty($mobile)) {
die;
}
require_once 'send_leads.php';
$postData = new PostData();
if ((!isset($_COOKIE['formfilled'])) && isset($_REQUEST['mobile'])) {
$postData->callback();
setcookie('formfilled', 'yes');
}
?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb" dir="ltr">
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<head>
<!-- Google Tag Manager -->
<!-- End Google Tag Manager -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="generator" content="" />
<title>Lake Estate | Thank you</title>
<img src="https://click.onatrack.in/p?m=3376&t=i&gb=1" width="0px" height="0px">
<link rel="icon" href="images/favicon.png" type="image/png" sizes="16x16">
<!-- Bootstrap CSS -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,600,800,900" rel="stylesheet">
<!-- Latest compiled and minified bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<!-- <link rel="stylesheet" href="css/responsive.css"> -->
<link rel="stylesheet" href="css/flaticon.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.css" />
<link rel="stylesheet" href="owlcarousel/owl.carousel.min.css">
<link rel="stylesheet" href="owlcarousel/owl.theme.default.min.css">
<link rel="stylesheet" href="https://d1ttyeymi5m8wq.cloudfront.net/assets-48/aos/aos.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css" />
</head>
<body class="site com-sppagebuilder view-page no-layout no-task itemid-550 en-gb ltr sticky-header layout-fluid">
<div class="body-innerwrapper">
<!-- Google Tag Manager (noscript) -->
<!-- End Google Tag Manager (noscript) -->
<header id="home">
<nav class="navbar navbar-default" id="hide-menu">
<div class="container pd0-m">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="col-md-2 hidden-xs">
<div class="navbar-header">
<a class="navbar-brand" href="index.php">
<img src="images/logo2.png">
</a>
</div>
</div>
<div class="col-md-8 col-xs-12 pd0-m">
<div class="navbar-header visible-xs">
<button type="button" class="navbar-toggle collapsed open-menu">
<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="images/logo.jpg">
<img class="visible-xs nav-logo" src="images/logo2.png">
</a>
</div>
<!-- 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"><i class="fa fa-home" aria-hidden="true"></i></a></li> -->
<li><a href="index.php" class="m-link"></a></li>
<li><a href="index.php" class="m-link"></a></li>
<li><a href="index.php" class="m-link"></a></li>
<li><a href="index.php" class="m-link"></a></li>
<li><a href="index.php" class="m-link"></a></li>
<!-- <li><a href="#about" class="m-link">About Us</a></li> -->
<li><a href="index.php" class="m-link"></a></li>
<!-- <li><a href="<?php echo $cta_t ?>" class="call-me"><i class="fa fa-phone f-icon"
aria-hidden="true"></i> <?php echo $cta ?></a></li> -->
</ul>
</div><!-- /.navbar-collapse -->
</div>
<div class="col-md-2 hidden-xs">
<div class="navbar-header">
<a class="navbar-brand" href="index.php">
<img class="nav-logo" src="images/logo.jpg">
</a>
</div>
</div>
</div><!-- /.container-fluid -->
</nav>
</header>
<!--Mobile Menu-->
<div id="myNav" class="menu-overlay">
<a href="javascript:void(0)" class="closebtn close-menu">×</a>
<div class="menu-overlay-content">
<a class="close-menu m-link" href="#overview"></a>
<a class="close-menu m-link" href="#configuration"></a>
<a class="close-menu m-link" href="#ame"></a>
<a class="close-menu m-link" href="#gallery"></a>
<a class="close-menu m-link" href="#location"></a>
<!-- <a class="close-menu m-link" href="#about">About Us</a> -->
<a class="close-menu m-link" href="#contactus"></a>
<!-- <a href="<?php echo $cta_t ?>" class="call-me"><i class="fa fa-phone f-icon" aria-hidden="true"></i>
<?php echo $cta ?></a> -->
</div>
</div>
<!--Mobile Menu-->
<section id="sp-main-body">
<div class="row">
<div id="sp-component" class="col-sm-12 col-md-12">
<div class="sppb-row-container">
<section style="min-height: 328px;">
<div>
<div class="wrap" style="margin:10% auto;padding:15px;height:auto !important;">
<span class="msgicon" aria-hidden="true"><i class="fa fa-check"
aria-hidden="true"></i></span>
<h2 class="oops">Thank You!</h2>
<h3 class="oops-subtitle" style="text-align:center;">
Thank you for expressing interest in Lake Estate<br />
Our expert will get in touch with you shortly.
</h3>
<a href="index.php" target="_blank" style="text-decoration: none;">
<h2 class="go-home">
Visit Our Website<span style="margin: 0 5px;" class="" aria-hidden="true"><i
class="fa fa-arrow-right" aria-hidden="true"></i></span></h2>
</a>
</div>
</div>
</section>
</div>
</div>
</div>
</section>
<section class="rera-sec">
<div class="container">
<div class="col-md-12">
<!-- <img src="images/qr.PNG" alt="qrcode"> -->
<!-- <div class="text-center pb-3 pb-sm-5"> <img src="images/logo-narang-realty.jpg" class="narang-foot-logo"> </div> -->
<p class="footer-text text-center">Rera REG No:
<!-- <a
href="https://maharerait.mahaonline.gov.in/ProjectSummaryView/ProjectSummaryQRCodeView?id=Q2VydGlmaWNhdGVObz1QNTE3MDAwNDc2NTUmU2NhbnR5cGU9UHJvbW90ZXJMb2dpblFSQ29kZQ==">https://maharerait.mahaonline.gov.in/...</a> -->
</p>
</div>
</div>
<div class="footer-sec grey-bg" id="footer">
<div class="foote-wrap">
<p>Copyright © 2025 All rights reserved <a class="disc-click" href="javascript:void (0);"
style="color: #fff;"></a> <a class="disc-click2" href="javascript:void (0);"
style="color: #fff;"> </a></p>
</div>
<p class="disText">Disclaimer : This is not an offer/an invitation to offer and/or commitment of any
nature.
The images included are artist's impression indicating the anticipated appearance of ongoing
development. The information is presented as general information and no warranty is expressly or
impliedly given that the completed development will comply in any degree with such artist's
impression
or anticipated appearance. Recipients are advised to apprise themselves of the necessary and
relevant
information of the projects/offers prior to making any purchase decisions.
</p>
</div>
</section>
</div>
<script src="js/jquery.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js">
</script>
<script src="js/jquery.validate.js"></script>
</body>
</html>