File size: 862 Bytes
9860c76
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!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>