-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
85 lines (72 loc) · 2.47 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
<?php
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<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="banner-container">
<h2 class="white pb-3">Happiness per Square Foot</h2>
<form id="search-form" action="property_list.php" method="GET">
<div class="input-group city-search">
<input type="text" class="form-control input-city" id='city' name='city' placeholder="Enter your city to search for PGs" />
<div class="input-group-append">
<button type="submit" class="btn btn-secondary">
<i class="fa fa-search"></i>
</button>
</div>
</div>
</form>
</div>
<div class="page-container">
<h1 class="city-heading">
Major Cities
</h1>
<div class="row">
<div class="city-card-container col-md">
<a href="property_list.php?city=Delhi">
<div class="city-card rounded-circle">
<img src="img/delhi.png" class="city-img" />
</div>
</a>
</div>
<div class="city-card-container col-md">
<a href="property_list.php?city=Mumbai">
<div class="city-card rounded-circle">
<img src="img/mumbai.png" class="city-img" />
</div>
</a>
</div>
<div class="city-card-container col-md">
<a href="property_list.php?city=Bengaluru">
<div class="city-card rounded-circle">
<img src="img/bangalore.png" class="city-img" />
</div>
</a>
</div>
<div class="city-card-container col-md">
<a href="property_list.php?city=Hyderabad">
<div class="city-card rounded-circle">
<img src="img/hyderabad.png" class="city-img" />
</div>
</a>
</div>
</div>
</div>
<?php
include "includes/signup_modal.php";
include "includes/login_modal.php";
include "includes/footer.php";
?>
</body>
</html>