-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
94 lines (80 loc) · 2.87 KB
/
index.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
<?php
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Best PG's in Mumbai | PG Life</title>
<link href="css/bootstrap.min.css" rel="stylesheet" />
<link href="https://use.fontawesome.com/releases/v5.11.2/css/all.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap" rel="stylesheet" />
<link href="css/common.css" rel="stylesheet" />
<link href="css/index.css" rel="stylesheet" />
</head>
<body>
<!-- Header Section -->
<?php require "./includes/header.php"; ?>
<div id="loading">
</div>
<div class="container-fluid pg-search-container">
<div class="row justify-content-center mb-3 text-white">
<div class="col-auto">
<h2>  Happiness per Square Foot</h2>
</div>
</div>
<!-- Search Bar -->
<form class="" action="property_list.php" method="GET">
<div class="row justify-content-center">
<div class="col-md-6 col-sm-8">
<div class="input-group md-form form-sm form-2 pl-0">
<input name="city" class="form-control my-0 py-1 red-border" type="text" placeholder="Enter your city to search for PGs" aria-label="Search">
<div class="input-group-append">
<button type="submit" class="btn btn-dark">
<!-- <span class="input-group-text red lighten-3" id="basic-text1"> -->
<i class="fas fa-search text-grey" aria-hidden="true"></i>
<!-- </span> -->
</button>
</div>
</div>
</div>
</div>
</form>
</div>
<div class="city-container">
<div class="city-caption">
<h2>Major Cities</h2>
</div>
<div class="city-box">
<div class="city-img">
<a href="property_list.php?city=Delhi">
<img src="./img/delhi.png" alt="Delhi">
</a>
</div>
<div class="city-img">
<a href="property_list.php?city=Mumbai">
<img src="./img/mumbai.png" alt="Mumbai">
</a>
</div>
<div class="city-img">
<a href="property_list.php?city=Hyderabad">
<img src="./img/hyderabad.png" alt="Hyderabad">
</a>
</div>
<div class="city-img">
<a href="property_list.php?city=Bengaluru">
<img src="./img/bangalore.png" alt="Bengaluru">
</a>
</div>
</div>
</div>
<!-- Modal Pages -->
<?php require "./includes/signup_modal.php"; ?>
<?php require "./includes/login_modal.php" ?>
<!-- Footer -->
<?php require "./includes/footer.php" ?>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/common.js"></script>
</body>
</html>