-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.php
89 lines (79 loc) · 2.65 KB
/
home.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
<?php
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome | PG Life</title>
<?php
include "includes/head_links.php";
?>
<link href="css/home.css" rel="stylesheet">
</head>
<body>
<?php
include "includes/header.php";
?>
<div class="landing-image">
<div class="search-box">
<h2 class="white text-center">
Happiness per Square Foot
</h2>
<form id="search-form" action="property_list.php" method="GET">
<div class="input-group">
<input class="form-control" type="text" name="city" id="search-city" placeholder="Enter your city to search for PGs" />
<div class="input-group-append">
<button class="btn btn-secondary" type="submit">
<i class="fa fa-search"></i>
</button>
</div>
</div>
</form>
</div>
</div>
<div class="page-container">
<h1 class="text-center">
Major Cities
</h1>
<div class="row">
<div class="col-md-3 city-container">
<a href="property_list.php?city=Delhi" >
<div class="city">
<img src="img/delhi.png" />
</div>
</a>
</div>
<div class="col-md-3 city-container">
<a href="property_list.php?city=Mumbai" >
<div class="city">
<img src="img/mumbai.png" />
</div>
</a>
</div>
<div class="col-md-3 city-container">
<a href="property_list.php?city=Bengaluru" >
<div class="city">
<img src="img/bangalore.png" />
</div>
</a>
</div>
<div class="col-md-3 city-container">
<a href="property_list.php?city=Hyderabad" >
<div class="city">
<img src="img/hyderabad.png" />
</div>
</a>
</div>
</div>
</div>
<?php
include "includes/signup_modal.php";
include "includes/login_modal.php";
include "includes/footer.php";
?>
<script type="text/javascript" src="js/home.js"></script>
</body>
</html>