-
Notifications
You must be signed in to change notification settings - Fork 0
/
property_list.php
143 lines (132 loc) · 4.21 KB
/
property_list.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<?php
session_start();
require "includes/database_connect.php";
$user_id = isset($_SESSION['user_id']) ? $_SESSION['user_id'] : NULL;
$city_name = $_GET["city"];
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Best PG's in <?php echo $city_name ?> | PG Life</title>
<?php
include "includes/head_links.php";
?>
<link href="css/property_list.css" rel="stylesheet" />
</head>
<body>
<?php
include "includes/header.php";
?>
<nav aria-label="breadcrumb">
<ol class="breadcrumb py-2">
<li class="breadcrumb-item">
<a href="index.php">Home</a>
</li>
<li class="breadcrumb-item active" aria-current="page">
<?php echo $city_name; ?>
</li>
</ol>
</nav>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root">
</div>
<?php
include "includes/signup_modal.php";
include "includes/login_modal.php";
include "includes/footer.php";
?>
<script>
!(function (e) {
function r (r) {
for (
var n, a, p = r[0], l = r[1], f = r[2], c = 0, s = [];
c < p.length;
c++
)
(a = p[c]),
Object.prototype.hasOwnProperty.call(o, a) &&
o[a] &&
s.push(o[a][0]),
(o[a] = 0)
for (n in l)
Object.prototype.hasOwnProperty.call(l, n) && (e[n] = l[n])
for (i && i(r); s.length; ) s.shift()()
return u.push.apply(u, f || []), t()
}
function t () {
for (var e, r = 0; r < u.length; r++) {
for (var t = u[r], n = !0, p = 1; p < t.length; p++) {
var l = t[p]
0 !== o[l] && (n = !1)
}
n && (u.splice(r--, 1), (e = a((a.s = t[0]))))
}
return e
}
var n = {},
o = { 1: 0 },
u = []
function a (r) {
if (n[r]) return n[r].exports
var t = (n[r] = { i: r, l: !1, exports: {} })
return e[r].call(t.exports, t, t.exports, a), (t.l = !0), t.exports
}
;(a.m = e),
(a.c = n),
(a.d = function (e, r, t) {
a.o(e, r) || Object.defineProperty(e, r, { enumerable: !0, get: t })
}),
(a.r = function (e) {
'undefined' != typeof Symbol &&
Symbol.toStringTag &&
Object.defineProperty(e, Symbol.toStringTag, { value: 'Module' }),
Object.defineProperty(e, '__esModule', { value: !0 })
}),
(a.t = function (e, r) {
if ((1 & r && (e = a(e)), 8 & r)) return e
if (4 & r && 'object' == typeof e && e && e.__esModule) return e
var t = Object.create(null)
if (
(a.r(t),
Object.defineProperty(t, 'default', { enumerable: !0, value: e }),
2 & r && 'string' != typeof e)
)
for (var n in e)
a.d(
t,
n,
function (r) {
return e[r]
}.bind(null, n)
)
return t
}),
(a.n = function (e) {
var r =
e && e.__esModule
? function () {
return e.default
}
: function () {
return e
}
return a.d(r, 'a', r), r
}),
(a.o = function (e, r) {
return Object.prototype.hasOwnProperty.call(e, r)
}),
(a.p = '/')
var p = (this['webpackJsonpreact-app'] =
this['webpackJsonpreact-app'] || []),
l = p.push.bind(p)
;(p.push = r), (p = p.slice())
for (var f = 0; f < p.length; f++) r(p[f])
var i = l
t()
})([])
</script>
<script src="js/2.bb328bef.chunk.js"></script>
<script src="js/main.d86a88e7.chunk.js"></script>
</body>
</html>