|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Select Property</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
</head>
|
|
<body class="bg-light">
|
|
<div class="container py-5">
|
|
<h2 class="mb-4">Tell us what you're looking for</h2>
|
|
<form method="POST">
|
|
<div class="mb-3">
|
|
<label class="form-label">Property Type</label>
|
|
<input type="text" class="form-control" name="propertyType" required placeholder="Villa, Flat, PG...">
|
|
</div>
|
|
<div class="mb-3">
|
|
<label class="form-label">Price Range (min-max)</label>
|
|
<input type="text" class="form-control" name="priceRange" required placeholder="50000-20000000">
|
|
</div>
|
|
<button class="btn btn-primary">Show Recommendations</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|