-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsell.html
204 lines (196 loc) · 8.95 KB
/
sell.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sell/Rent Property - PropHub</title>
<link rel="stylesheet" href="sell.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<nav class="navbar">
<div class="logo">PropHub</div>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="properties.html">Properties</a>
<a href="sell.html">Sell/Rent Property</a>
<div class="auth-buttons">
<a href="signin.html" class="btn-signin">Sign In</a>
<a href="signup.html" class="btn-signup">Sign Up</a>
</div>
</div>
<div class="hamburger">
<span></span>
<span></span>
<span></span>
</div>
</nav>
<div class="sell-container">
<div class="sell-header">
<i class="fas fa-home"></i>
<h1>List Your Property</h1>
<p>Reach thousands of potential buyers and tenants</p>
</div>
<form class="property-form" id="propertyForm">
<div class="form-section">
<h3><i class="fas fa-info-circle"></i> Basic Information</h3>
<div class="form-group">
<label for="title">Property Title</label>
<input type="text" id="title" placeholder="Enter a catchy title" required>
</div>
<div class="form-row">
<div class="form-group">
<label for="type">Property Type</label>
<select id="type" required>
<option value="">Select Type</option>
<option value="house">House</option>
<option value="apartment">Apartment</option>
<option value="villa">Villa</option>
<option value="shop">Shop</option>
<option value="office">Office Space</option>
<option value="warehouse">Warehouse</option>
<option value="land">Land</option>
<option value="farm">Farm House</option>
</select>
</div>
<div class="form-group">
<label for="purpose">Purpose</label>
<select id="purpose" required>
<option value="">Select Purpose</option>
<option value="sale">For Sale</option>
<option value="rent">For Rent</option>
<option value="lease">For Lease</option>
</select>
</div>
</div>
</div>
<div class="form-section">
<h3><i class="fas fa-map-marker-alt"></i> Location Details</h3>
<div class="form-row">
<div class="form-group">
<label for="city">City</label>
<input type="text" id="city" required>
</div>
<div class="form-group">
<label for="area">Area/Locality</label>
<input type="text" id="area" required>
</div>
</div>
<div class="form-group">
<label for="address">Complete Address</label>
<input type="text" id="address" required>
</div>
</div>
<div class="form-section">
<h3><i class="fas fa-dollar-sign"></i> Pricing</h3>
<div class="form-row">
<div class="form-group">
<label for="price">Price</label>
<input type="number" id="price" required>
</div>
<div class="form-group">
<label for="priceType">Price Type</label>
<select id="priceType" required>
<option value="total">Total Price</option>
<option value="sqft">Per Sq.Ft</option>
<option value="monthly">Monthly Rent</option>
<option value="yearly">Yearly Rent</option>
</select>
</div>
</div>
</div>
<div class="form-section">
<h3><i class="fas fa-building"></i> Property Features</h3>
<div class="form-row">
<div class="form-group">
<label for="bedrooms">Bedrooms</label>
<input type="number" id="bedrooms" min="0">
</div>
<div class="form-group">
<label for="bathrooms">Bathrooms</label>
<input type="number" id="bathrooms" min="0">
</div>
<div class="form-group">
<label for="area">Area (sq.ft)</label>
<input type="number" id="area" min="0" required>
</div>
</div>
<div class="form-group">
<label>Amenities</label>
<div class="amenities-grid">
<label class="checkbox-label">
<input type="checkbox" name="amenities" value="parking">
<i class="fas fa-parking"></i> Parking
</label>
<label class="checkbox-label">
<input type="checkbox" name="amenities" value="pool">
<i class="fas fa-swimming-pool"></i> Swimming Pool
</label>
<label class="checkbox-label">
<input type="checkbox" name="amenities" value="garden">
<i class="fas fa-tree"></i> Garden
</label>
<label class="checkbox-label">
<input type="checkbox" name="amenities" value="security">
<i class="fas fa-shield-alt"></i> Security
</label>
<label class="checkbox-label">
<input type="checkbox" name="amenities" value="gym">
<i class="fas fa-dumbbell"></i> Gym
</label>
<label class="checkbox-label">
<input type="checkbox" name="amenities" value="elevator">
<i class="fas fa-elevator"></i> Elevator
</label>
</div>
</div>
</div>
<div class="form-section">
<h3><i class="fas fa-image"></i> Media</h3>
<div class="form-group">
<label for="images">Upload Images</label>
<div class="image-upload-container" id="imageUploadContainer">
<div class="image-upload-box">
<i class="fas fa-cloud-upload-alt"></i>
<p>Drag & Drop images here or click to browse</p>
<input type="file" id="images" multiple accept="image/*">
</div>
<div class="image-preview" id="imagePreview"></div>
</div>
</div>
</div>
<div class="form-section">
<h3><i class="fas fa-align-left"></i> Description</h3>
<div class="form-group">
<label for="description">Property Description</label>
<textarea id="description" rows="4" placeholder="Describe your property in detail..." required></textarea>
</div>
</div>
<button type="submit" class="btn-primary">Submit Listing</button>
</form>
</div>
<footer>
<div class="footer-content">
<div class="footer-section">
<h3>PropHub</h3>
<p>Your trusted partner in real estate</p>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<a href="#">About Us</a>
<a href="#">Contact</a>
<a href="#">Terms of Service</a>
</div>
<div class="footer-section">
<h3>Contact Us</h3>
<p>Email: [email protected]</p>
<p>Phone: (555) 123-4567</p>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 PropHub. All rights reserved.</p>
</div>
</footer>
<script src="scripts.js"></script>
</body>
</html>