-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact-us.php
executable file
·185 lines (131 loc) · 8.29 KB
/
contact-us.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8"/>
<title>Contact Us - adspace.lk</title>
<meta name="Description" content="contact adspace.lk, adspace.lk is the best way to sell and buy property, online realestate in sri lanka" />
<meta name="Keywords" content="contact us, contact company, contact adspace.lk, buildings, rooms, appartments, resort, submit a free ad, sri lanka" />
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700,300' rel='stylesheet' type='text/css'>
<link rel="shortcut icon" href="assets/img/favicon.png" type="image/png">
<link rel="stylesheet" href="assets/css/bootstrap.css" type="text/css">
<link rel="stylesheet" href="assets/css/bootstrap-responsive.css" type="text/css">
<link rel="stylesheet" href="assets/libraries/chosen/chosen.css" type="text/css">
<link rel="stylesheet" href="assets/libraries/bootstrap-fileupload/bootstrap-fileupload.css" type="text/css">
<link rel="stylesheet" href="assets/libraries/jquery-ui-1.10.2.custom/css/ui-lightness/jquery-ui-1.10.2.custom.min.css" type="text/css">
<link rel="stylesheet" href="assets/css/realia-blue.css" type="text/css" id="color-variant-default">
<link rel="stylesheet" href="#" type="text/css" id="color-variant">
<?php require_once("includes/initialize.php"); ?>
</head>
<?php include('templates/header.php'); ?>
<!-- CONTENT -->
<div id="content"> <div class="container">
<div id="main">
<div class="row">
<div class="span9">
<h1 class="page-header">Contact us</h1>
<iframe class="map" width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.lk/maps?f=q&source=s_q&hl=en&geocode=&q=adspace.lk,+Dehiwala-Mount+Lavinia&aq=0&oq=adspace.lk&sll=6.829237,80.099398&sspn=2.707755,3.348083&t=m&ie=UTF8&hq=&hnear=adspace.lk,+Dehiwala-Mount+Lavinia,+Colombo,+Western+Province&ll=6.834951,79.864941&spn=0.010578,0.013078&z=14&output=embed"></iframe>
<p>
We welcome your complains, sugessions and Feedbacks, which will help us to grow better even better in feature. so please say Hello! to us..
</p>
<div class="row">
<div class="span3">
<h3 class="address">Address</h3>
<p class="content-icon-spacing">
533 Galle road<br>
Mount Lavinia, Sri Lanka
</p>
</div>
<div class="span3">
<h3 class="call-us">Call us</h3>
<p class="content-icon-spacing">
1900-CO-WORKER<br>
075-859-38569
</p>
</div>
<div class="span3">
<h3 class="email">Email</h3>
<p class="content-icon-spacing">
<a href="mailto:[email protected]">contact management</a><br>
<a href="mailto:[email protected]">contact support</a>
</p>
</div>
</div>
<h2> We'd love to hear from you. Say us hello! </h2>
<form method="post" class="contact-form" action="actions/sayhello.php">
<div class="name control-group">
<label class="control-label" for="inputContactName">
Name
<span class="form-required" title="This field is required.">*</span>
</label>
<div class="controls">
<input type="text" id="inputContactName" name="name" required="required" >
</div><!-- /.controls -->
</div><!-- /.control-group -->
<div class="email control-group">
<label class="control-label" for="inputContactEmail">
Email
<span class="form-required" title="This field is required.">*</span>
</label>
<div class="controls">
<input type="text" id="inputContactEmail" name="email" required="required" >
</div><!-- /.controls -->
</div><!-- /.control-group -->
<div class="control-group">
<label class="control-label" for="inputContactMessage">
Message
<span class="form-required" title="This field is required.">*</span>
</label>
<div class="controls">
<textarea id="inputContactMessage" name="message" required="required" ></textarea>
</div><!-- /.controls -->
</div><!-- /.control-group -->
<div class="form-actions">
<input type="submit" class="btn btn-primary arrow-right" value="Send" name="submit">
</div><!-- /.form-actions -->
</form>
</div>
<div class="sidebar span3">
<div class="widget properties last">
<div class="title">
<h2>Latest Properties</h2>
</div><!-- /.title -->
<div class="content">
<?php
$sql3 = "SELECT * FROM property WHERE verified=2 AND ad_type=2 ORDER BY id DESC LIMIT 5";
$popular_proper = property::find_by_sql($sql3);
?>
<?php foreach ($popular_proper as $po_pro) :?>
<div class="property">
<?php
$sql3 = "SELECT * FROM property_images WHERE property_id= ".$po_pro->id." AND img_no=1";
$property_imge = property_images::find_by_sql($sql3);
?>
<div class="image">
<a href="View_single_property.php?id=<?php echo $po_pro->id;?>&title=<?php echo $po_pro->title;?>"></a>
<?php foreach ($property_imge as $pr_imge) :?>
<img src="property_imasg/<?php echo $pr_imge->name;?>" >
<?php endforeach; ?>
</div><!-- /.image -->
<div class="wrapper">
<div class="title">
<?php $result3 = substr($po_pro->title, 0, 16);?>
<h3>
<a href="View_single_property.php?id=<?php echo $po_pro->id;?>&title=<?php echo $po_pro->title;?>"><?php echo $result3;?>..</a>
</h3>
</div><!-- /.title -->
<div class="location"><?php echo $po_pro->city;?>, <?php echo $po_pro->district;?></div><!-- /.location -->
<div class="price"><?php echo $po_pro->price;?></div><!-- /.price -->
</div><!-- /.wrapper -->
</div><!-- /.property -->
<?php endforeach; ?>
</div><!-- /.content -->
</div><!-- /.properties -->
<div class="ad widget">
</div><!-- /.ad -->
</div>
</div>
</div>
</div>
</div><!-- /#content -->
</div><!-- /#wrapper-inner -->
<?php include('templates/footer.php'); ?>