-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpost.php
More file actions
130 lines (120 loc) · 4.72 KB
/
post.php
File metadata and controls
130 lines (120 loc) · 4.72 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
<?php
include "config.php";
include "library/functions.php";
?>
<!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">
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-KJGS4HC');</script>
<!-- End Google Tag Manager -->
<title>Real Estate 7</title>
<!-- Bootstrap -->
<link rel="stylesheet" type="text/css" media="screen" href="css/bootstrap.css">
<link rel="stylesheet" type="text/css" media="screen" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" media="screen" href="css/bootstrap-theme.css">
<link rel="stylesheet" type="text/css" media="screen" href="css/bootstrap-theme.min.css">
<link rel="stylesheet" type="text/css" media="screen" href="css/bootstrap-social.css">
<!-- Font CSS -->
<link rel="stylesheet" type="text/css" media="screen" href="css/font-awesome.css">
<link rel="stylesheet" type="text/css" media="screen" href="css/font-awesome.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" type="text/css" media="screen" href="css/style.css">
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KJGS4HC"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<?php include "navigation.php"; ?>
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 hidden-xs">
<?php include "navigation_main.php"; ?>
</div>
</div>
<hr>
</div>
<section>
<div class="container">
</section>
<hr>
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12">
<form class="well form-horizontal" action="sales@berclay.co.nz">
<fieldset>
<!-- Form Start -->
<legend>List your property</legend>
<div class="form-group">
<label for="category" class="control-label">Please Select</label>
<select class="form-control" name="type" id="type1">
<option selected="selected" value="0">Category ↓↓↓</option>
<option value="1">For Sale</option>
<option value="2">For Rent</option>
<option value="3">For Lease</option>
</select>
</div>
<div class="form-group">
<label for="dwelling" class="control-label">Please Select</label>
<select class="form-control" name="type" id="type1">
<option selected="selected" value="0">Type of Dwelling ↓↓↓</option>
<option value="1">Apartment</option>
<option value="2">House</option>
<option value="3">Unit</option>
<option value="3">Section</option>
</select>
</div>
<div class="form-group">
<label for="dwelling" class="control-label">Please Select</label>
<select class="form-control" name="type" id="type1">
<option selected="selected" value="0">Region ↓↓↓</option>
<option value="1">Christchurch</option>
<option value="2">Dunedin</option>
<option value="3">Auckland</option>
<option value="3">Hamilton</option>
</select>
</div>
<div class="form-group">
<label for="listingtitle" class="control-label">Listing Title</label>
<div class="input-group">
<input type="text" class="form-control" name="listing-title" id="listing-title" aria-describedby="basic-addon1">
</div> <br>
<h5><strong>Details</strong></h5>
<textarea rows="8" cols="25"></textarea>
<br><br>
<h5><strong>Asking Price</strong></h5>
<input type="text">$</div>
<h5><strong>Upload Photos</strong></h5>
<ul>
<li><input type="file"></li>
<li><input type="file"></li>
<li><input type="file"></li>
</ul>
<br>
<input type="reset"> <input type="submit">
</div>
</div>
</div>
<!-- /.container -->
<hr>
<?php
include "footer.php";
disconnect();
?>
<!-- jQuery -->
<script src="js/jquery-1.11.3.min.js"></script>
<!-- Bootstrap JS --> ->
<script src="js/bootstrap.js"></script>
<script src="js/bootstrap.min.js"></script>
<!-- Custom JS -->
<script src="js/style.js"></script>
</body>
</html>