-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.html
877 lines (776 loc) · 61.6 KB
/
search.html
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Listings</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body onload="checkLogin()">
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-light bg-light shadow-sm sticky-top" onload="updateNav()">
<div class="container-fluid">
<a class="navbar-brand" href="./index.html">
<img class="mx-1" src="https://placehold.co/40x32?text=Logo" alt="FindAHome Logo">FindAHome</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav me-auto nav-pills">
<li class="nav-item home">
<a class="nav-link" href="./index.html">Home</a>
</li>
<li class="nav-item listings">
<a class="nav-link active" aria-current="page" href="./search.html">Listings</a>
</li>
<li class="nav-item renter-hub">
<a class="nav-link" href="#renters-hub">Renters Hub</a>
</li>
</ul>
<ul class="navbar-nav">
<li class="nav-item account">
<a class="nav-link log-in" href="./login.html">Log in</a>
<div class="btn-group account-options">
<button type="" class="btn btn-light p-0">
<div class="profile-pic">
<img class="mx-auto" src="https://placehold.co/65x65" alt="Profile picture">
</div>
</button>
<button type="button" class="btn btn-light dropdown-toggle dropdown-toggle-split ms-2"
data-bs-toggle="dropdown" aria-expanded="false">
<span class="visually-hidden">Toggle Dropdown</span>
</button>
<ul class="dropdown-menu">
<li>
<p class="dropdown-item welcome-text text-primary pb-0 mb-0">Hi User!</p>
</li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item profile" href="#">Profile</a></li>
<li><a class="dropdown-item saved-listings" href="#">Saved Listings</a></li>
<li><a class="dropdown-item chats" href="#">Chats</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><button class="btn dropdown-item logout bg-transparent" onclick="logout()">Log
Out</button></li>
</ul>
</div>
</li>
</ul>
</div>
</div>
</nav>
<main id="main-listing">
<div class="bg-light d-lg-none">
<button id="filter-toggle" class="btn btn-light" type="button" data-bs-toggle="modal"
data-bs-target="#filter-modal">
<?xml version="1.0" encoding="UTF-8"?>
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
<svg width="30px" height="30px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Filter</title>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Filter">
<rect id="Rectangle" fill-rule="nonzero" x="0" y="0" width="24" height="24">
</rect>
<line x1="4" y1="5" x2="16" y2="5" id="Path" stroke="#0C0310" stroke-width="2"
stroke-linecap="round">
</line>
<line x1="4" y1="12" x2="10" y2="12" id="Path" stroke="#0C0310" stroke-width="2"
stroke-linecap="round">
</line>
<line x1="14" y1="12" x2="20" y2="12" id="Path" stroke="#0C0310" stroke-width="2"
stroke-linecap="round">
</line>
<line x1="8" y1="19" x2="20" y2="19" id="Path" stroke="#0C0310" stroke-width="2"
stroke-linecap="round">
</line>
<circle id="Oval" stroke="#0C0310" stroke-width="2" stroke-linecap="round" cx="18" cy="5"
r="2">
</circle>
<circle id="Oval" stroke="#0C0310" stroke-width="2" stroke-linecap="round" cx="12" cy="12"
r="2">
</circle>
<circle id="Oval" stroke="#0C0310" stroke-width="2" stroke-linecap="round" cx="6" cy="19"
r="2">
</circle>
</g>
</g>
</svg>
</button>
</div>
<div class="modal" id="filter-modal" tabindex="-1" aria-labelledby="filter-modal-label" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5" id="filter-modal-label">Filters</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<div class="filters">
<!-- University Affiliation -->
<div>
<label class="filter-section-header" for="universityAffiliation">University Affiliation</label>
<select id="modal-universityAffiliation" name="universityAffiliation">
<option value="default">Select an option</option>
<option value="mcmaster">McMaster University</option>
<option value="toronto">University of Toronto</option>
<option value="waterloo">University of Waterloo</option>
<option value="ottawa">University of Ottawa</option>
<option value="carleton">Carleton University</option>
<option value="queens">Queens University</option>
<option value="more">...</option>
</select>
</div>
<!-- Type of Accommodation -->
<div>
<label class="filter-section-header" for="accommodationType">Accommodation Type</label>
<select id="modal-accommodationType" name="accommodationType">
<option value="default">Select an option</option>
<option value="apartment">Apartment</option>
<option value="house">House</option>
<option value="room">Room (in shared house)</option>
<option value="studio">Studio</option>
</select>
</div>
<!-- Price Slider -->
<div>
<fieldset>
<legend class="filter-section-header w-100">Rent</legend>
<label class="d-inline-block" for="min">Min</label>
<input class="d-inline-block w-25" type="number" id="modal-min" name="min" />
<label class="d-inline-block" for="max">Max</label>
<input class="d-inline-block w-25" type="number" id="modal-max" name="max" />
</fieldset>
</div>
<!-- Number of Rooms -->
<div>
<fieldset>
<legend class="filter-section-header w-100">Number of Rooms</legend>
<div class="btn-group filter-btn-group" role="group"
aria-label="Basic checkbox toggle button group">
<input type="checkbox" class="btn-check" id="modal-numRooms1" autocomplete="off">
<label class="btn btn-outline-dark" for="numRooms1">1</label>
<input type="checkbox" class="btn-check" id="modal-numRooms2" autocomplete="off">
<label class="btn btn-outline-dark" for="numRooms2">2</label>
<input type="checkbox" class="btn-check" id="modal-numRooms3" autocomplete="off">
<label class="btn btn-outline-dark" for="numRooms3">3</label>
<input type="checkbox" class="btn-check" id="modal-numRooms4+" autocomplete="off">
<label class="btn btn-outline-dark" for="numRooms4+">4+</label>
</div>
</fieldset>
</div>
<!-- Number of Bathrooms -->
<div>
<fieldset>
<legend class="filter-section-header w-100">Number of Bathrooms</legend>
<div class="btn-group filter-btn-group" role="group"
aria-label="Basic checkbox toggle button group">
<input type="checkbox" class="btn-check" id="modal-numBaths1" autocomplete="off">
<label class="btn btn-outline-dark" for="numBaths1">1</label>
<input type="checkbox" class="btn-check" id="modal-numBaths2" autocomplete="off">
<label class="btn btn-outline-dark" for="numBaths2">2</label>
<input type="checkbox" class="btn-check" id="modal-numBaths3" autocomplete="off">
<label class="btn btn-outline-dark" for="numBaths3">3</label>
<input type="checkbox" class="btn-check" id="modal-numBaths4+" autocomplete="off">
<label class="btn btn-outline-dark" for="numBaths4+">4+</label>
</div>
</fieldset>
</div>
<!-- Number of Roommates -->
<div>
<fieldset>
<legend class="filter-section-header w-100">Number of Roommates</legend>
<div class="btn-group filter-btn-group" role="group"
aria-label="Basic checkbox toggle button group">
<input type="checkbox" class="btn-check" id="modal-numRoommates1" autocomplete="off">
<label class="btn btn-outline-dark" for="numRoommates1">1</label>
<input type="checkbox" class="btn-check" id="modal-numRoommates2" autocomplete="off">
<label class="btn btn-outline-dark" for="numRoommates2">2</label>
<input type="checkbox" class="btn-check" id="modal-numRoommates3" autocomplete="off">
<label class="btn btn-outline-dark" for="numRoommates3">3</label>
<input type="checkbox" class="btn-check" id="modal-numRoommates4+" autocomplete="off">
<label class="btn btn-outline-dark" for="numRoommates4+">4+</label>
</div>
</fieldset>
</div>
<!-- Location/Proximity Filter -->
<div>
<fieldset>
<legend class="filter-section-header">Proximity to Campus</legend>
<div class="d-flex gap-2">
<label for="proximity">Within</label>
<input class="d-inline-block w-50" type="number" id="modal-proximity" name="proximity" min="0"
max="50" placeholder="Distance in km">
</div>
</fieldset>
</div>
<!-- Lease Duration -->
<div>
<fieldset>
<legend class="filter-section-header w-100">Lease Duration</legend>
<div class="btn-group filter-btn-group" role="group"
aria-label="Basic checkbox toggle button group">
<input type="checkbox" class="btn-check" id="modal-leaseDuration4" autocomplete="off">
<label class="btn btn-outline-dark lease" for="leaseDuration4">4 mo.</label>
<input type="checkbox" class="btn-check" id="modal-leaseDuration8" autocomplete="off">
<label class="btn btn-outline-dark lease" for="leaseDuration8">8 mo.</label>
<input type="checkbox" class="btn-check" id="modal-leaseDuration12" autocomplete="off">
<label class="btn btn-outline-dark lease" for="leaseDuration12">12+ mo.</label>
</div>
</fieldset>
</div>
<!-- Available By -->
<div>
<label class="filter-section-header" for="available">Available By</label>
<input class="w-50" type="date" id="modal-available" name="available">
</div>
<!-- Features and Amenities -->
<fieldset>
<div id="modal-amenities" class="d-flex align-items-center gap-1">
<legend class="filter-section-header d-inline-block">Features and Amenities</legend>
<button class="btn btn-primary bg-transparent p-0 border-0" type="button"
data-bs-toggle="collapse" data-bs-target="#modal-amenitiesCollapse" aria-expanded="false"
aria-controls="modal-amenitiesCollapse">
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
<svg width="20px" height="20px" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M12.7071 14.7071C12.3166 15.0976 11.6834 15.0976 11.2929 14.7071L6.29289 9.70711C5.90237 9.31658 5.90237 8.68342 6.29289 8.29289C6.68342 7.90237 7.31658 7.90237 7.70711 8.29289L12 12.5858L16.2929 8.29289C16.6834 7.90237 17.3166 7.90237 17.7071 8.29289C18.0976 8.68342 18.0976 9.31658 17.7071 9.70711L12.7071 14.7071Z"
fill="#000000" />
</svg>
</button>
</div>
<div class="collapse" id="modal-amenitiesCollapse">
<div class="card card-body bg-light">
<div>
<label class="d-inline-block check-label" for="wifi">Wifi Included</label>
<input class="d-inline-block check" type="checkbox" id="modal-wifi" name="wifi">
</div>
<div>
<label class="d-inline-block check-label" for="utilities">Utilities Included</label>
<input class="d-inline-block check" type="checkbox" id="modal-utilities" name="utilities">
</div>
<div>
<label class="d-inline-block check-label" for="furnished">Furnished</label>
<input class="d-inline-block check" type="checkbox" id="modal-furnished" name="furnished">
</div>
<div>
<label class="d-inline-block check-label" for="pets">Pets Allowed</label>
<input class="d-inline-block check" type="checkbox" id="modal-pets" name="pets">
</div>
<div>
<label class="d-inline-block check-label" for="laundry">On-site Laundry</label>
<input class="d-inline-block check" type="checkbox" id="modal-laundry" name="laundry">
</div>
<div>
<label class="d-inline-block check-label" for="ac">Has Air Conditioning</label>
<input class="d-inline-block check" type="checkbox" id="modal-ac" name="ac">
</div>
<div>
<label class="d-inline-block check-label" for="parking">Parking</label>
<input class="d-inline-block check" type="checkbox" id="modal-parking" name="parking">
</div>
<div>
<label class="d-inline-block check-label" for="sublet">Sublet</label>
<input class="d-inline-block check" type="checkbox" id="modal-sublet" name="sublet">
</div>
</div>
</div>
</fieldset>
<!-- Allow Sublets -->
<div>
<label class="d-inline-block check-label" for="yes-sublet">Allow Sublets</label>
<input class="d-inline-block check" type="checkbox" id="modal-yes-sublet" name="yes-sublet">
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary" data-bs-dismiss="modal">Apply filters</button>
</div>
</div>
</div>
</div>
<div id="sidebar" class="bg-light">
<div class="sidebar-content d-flex flex-column gap-4 bg-light">
<h4>Filters</h4>
<div class="filters">
<!-- University Affiliation -->
<div>
<label class="filter-section-header" for="universityAffiliation">University Affiliation</label>
<select id="universityAffiliation" name="universityAffiliation">
<option value="mcmaster">McMaster University</option>
<option value="toronto">University of Toronto</option>
<option value="waterloo">University of Waterloo</option>
<option value="ottawa">University of Ottawa</option>
<option value="carleton">Carleton University</option>
<option value="queens">Queens University</option>
<option value="more">...</option>
</select>
</div>
<!-- Type of Accommodation -->
<div>
<label class="filter-section-header" for="accommodationType">Accommodation Type</label>
<select id="accommodationType" name="accommodationType">
<option value="apartment">Apartment</option>
<option value="house">House</option>
<option value="room">Room (in shared house)</option>
<option value="studio">Studio</option>
</select>
</div>
<!-- Price Slider -->
<div>
<fieldset>
<legend class="filter-section-header w-100">Rent</legend>
<label class="d-inline-block" for="min">Min</label>
<input class="d-inline-block" type="number" id="min" name="min" />
<label class="d-inline-block" for="max">Max</label>
<input class="d-inline-block" type="number" id="max" name="max" />
</fieldset>
</div>
<!-- Number of Rooms -->
<div>
<fieldset>
<legend class="filter-section-header">Number of Rooms</legend>
<div class="btn-group filter-btn-group" role="group"
aria-label="Basic checkbox toggle button group">
<input type="checkbox" class="btn-check" id="numRooms1" autocomplete="off">
<label class="btn btn-outline-dark" for="numRooms1">1</label>
<input type="checkbox" class="btn-check" id="numRooms2" autocomplete="off">
<label class="btn btn-outline-dark" for="numRooms2">2</label>
<input type="checkbox" class="btn-check" id="numRooms3" autocomplete="off">
<label class="btn btn-outline-dark" for="numRooms3">3</label>
<input type="checkbox" class="btn-check" id="numRooms4+" autocomplete="off">
<label class="btn btn-outline-dark" for="numRooms4+">4+</label>
</div>
</fieldset>
</div>
<!-- Number of Bathrooms -->
<div>
<fieldset>
<legend class="filter-section-header">Number of Bathrooms</legend>
<div class="btn-group filter-btn-group" role="group"
aria-label="Basic checkbox toggle button group">
<input type="checkbox" class="btn-check" id="numBaths1" autocomplete="off">
<label class="btn btn-outline-dark" for="numBaths1">1</label>
<input type="checkbox" class="btn-check" id="numBaths2" autocomplete="off">
<label class="btn btn-outline-dark" for="numBaths2">2</label>
<input type="checkbox" class="btn-check" id="numBaths3" autocomplete="off">
<label class="btn btn-outline-dark" for="numBaths3">3</label>
<input type="checkbox" class="btn-check" id="numBaths4+" autocomplete="off">
<label class="btn btn-outline-dark" for="numBaths4+">4+</label>
</div>
</fieldset>
</div>
<!-- Number of Roommates -->
<div>
<fieldset>
<legend class="filter-section-header">Number of Roommates</legend>
<div class="btn-group filter-btn-group" role="group"
aria-label="Basic checkbox toggle button group">
<input type="checkbox" class="btn-check" id="numRoommates1" autocomplete="off">
<label class="btn btn-outline-dark" for="numRoommates1">1</label>
<input type="checkbox" class="btn-check" id="numRoommates2" autocomplete="off">
<label class="btn btn-outline-dark" for="numRoommates2">2</label>
<input type="checkbox" class="btn-check" id="numRoommates3" autocomplete="off">
<label class="btn btn-outline-dark" for="numRoommates3">3</label>
<input type="checkbox" class="btn-check" id="numRoommates4+" autocomplete="off">
<label class="btn btn-outline-dark" for="numRoommates4+">4+</label>
</div>
</fieldset>
</div>
<!-- Location/Proximity Filter -->
<div>
<fieldset>
<legend class="filter-section-header">Proximity to Campus</legend>
<div class="d-flex gap-2">
<label for="proximity">Within</label>
<input class="d-inline-block" type="number" id="proximity" name="proximity" min="0"
max="50" placeholder="Distance in km">
</div>
</fieldset>
</div>
<!-- Lease Duration -->
<div>
<fieldset>
<legend class="filter-section-header">Lease Duration</legend>
<div class="btn-group filter-btn-group" role="group"
aria-label="Basic checkbox toggle button group">
<input type="checkbox" class="btn-check" id="leaseDuration4" autocomplete="off">
<label class="btn btn-outline-dark lease" for="leaseDuration4">4 mo.</label>
<input type="checkbox" class="btn-check" id="leaseDuration8" autocomplete="off">
<label class="btn btn-outline-dark lease" for="leaseDuration8">8 mo.</label>
<input type="checkbox" class="btn-check" id="leaseDuration12" autocomplete="off">
<label class="btn btn-outline-dark lease" for="leaseDuration12">12+ mo.</label>
</div>
</fieldset>
</div>
<!-- Available By -->
<div>
<label class="filter-section-header" for="available">Available By</label>
<input type="date" id="available" name="available">
</div>
<!-- Features and Amenities -->
<fieldset>
<div id="amenities" class="d-flex align-items-center gap-1">
<legend class="filter-section-header d-inline-block">Features and Amenities</legend>
<button class="btn btn-primary bg-transparent p-0 border-0" type="button"
data-bs-toggle="collapse" data-bs-target="#amenitiesCollapse" aria-expanded="false"
aria-controls="amenitiesCollapse">
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
<svg width="20px" height="20px" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M12.7071 14.7071C12.3166 15.0976 11.6834 15.0976 11.2929 14.7071L6.29289 9.70711C5.90237 9.31658 5.90237 8.68342 6.29289 8.29289C6.68342 7.90237 7.31658 7.90237 7.70711 8.29289L12 12.5858L16.2929 8.29289C16.6834 7.90237 17.3166 7.90237 17.7071 8.29289C18.0976 8.68342 18.0976 9.31658 17.7071 9.70711L12.7071 14.7071Z"
fill="#000000" />
</svg>
</button>
</div>
<div class="collapse" id="amenitiesCollapse">
<div class="card card-body bg-light">
<div>
<label class="d-inline-block check-label" for="wifi">Wifi Included</label>
<input class="d-inline-block check" type="checkbox" id="wifi" name="wifi">
</div>
<div>
<label class="d-inline-block check-label" for="utilities">Utilities Included</label>
<input class="d-inline-block check" type="checkbox" id="utilities" name="utilities">
</div>
<div>
<label class="d-inline-block check-label" for="furnished">Furnished</label>
<input class="d-inline-block check" type="checkbox" id="furnished" name="furnished">
</div>
<div>
<label class="d-inline-block check-label" for="pets">Pets Allowed</label>
<input class="d-inline-block check" type="checkbox" id="pets" name="pets">
</div>
<div>
<label class="d-inline-block check-label" for="laundry">On-site Laundry</label>
<input class="d-inline-block check" type="checkbox" id="laundry" name="laundry">
</div>
<div>
<label class="d-inline-block check-label" for="ac">Has Air Conditioning</label>
<input class="d-inline-block check" type="checkbox" id="ac" name="ac">
</div>
<div>
<label class="d-inline-block check-label" for="parking">Parking</label>
<input class="d-inline-block check" type="checkbox" id="parking" name="parking">
</div>
<div>
<label class="d-inline-block check-label" for="sublet">Sublet</label>
<input class="d-inline-block check" type="checkbox" id="sublet" name="sublet">
</div>
</div>
</div>
</fieldset>
<!-- Allow Sublets -->
<div>
<label class="d-inline-block check-label" for="yes-sublet">Allow Sublets</label>
<input class="d-inline-block check" type="checkbox" id="yes-sublet" name="yes-sublet">
</div>
<button class="btn bg-primary d-block ms-5 mt-2 text-light">Apply Filters</button>
</div>
</div>
</div>
<div id="toolbar" class="bg-light d-flex justify-content-end align-items-center">
<div class="sort m-1 me-3 btn">
Sort
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
<svg width="20px" height="20px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M22 7L2 7" stroke="#1C274C" stroke-width="1.5" stroke-linecap="round" />
<path d="M19 12L5 12" stroke="#1C274C" stroke-width="1.5" stroke-linecap="round" />
<path d="M16 17H8" stroke="#1C274C" stroke-width="1.5" stroke-linecap="round" />
</svg>
</div>
</div>
<!-- Main Content Area for Home Listings -->
<div id="main-content">
<!-- Example of a House Listing -->
<div class="card house-listing mb-3">
<div class="row g-0">
<div class="col-md-4">
<img src="./img/house4.jpg" class="img-fluid rounded-start"
alt="House Image 1">
</div>
<div class="col-md-8">
<div class="card-body">
<div class="info">
<div class="d-flex justify-content-between">
<h5 class="card-title text-primary">$750<small
class="text-body-secondary text-secondary">/
month</small></h5>
<div class="university-affiliation text-danger">McMaster Univeristy</div>
</div>
<h5 class="card-subtitle">
Room for Rent
<div class="verified-badge d-inline-block">
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
<svg title="verified" width="20px" height="20px" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M9.5924 3.20027C9.34888 3.4078 9.22711 3.51158 9.09706 3.59874C8.79896 3.79854 8.46417 3.93721 8.1121 4.00672C7.95851 4.03705 7.79903 4.04977 7.48008 4.07522C6.6787 4.13918 6.278 4.17115 5.94371 4.28923C5.17051 4.56233 4.56233 5.17051 4.28923 5.94371C4.17115 6.278 4.13918 6.6787 4.07522 7.48008C4.04977 7.79903 4.03705 7.95851 4.00672 8.1121C3.93721 8.46417 3.79854 8.79896 3.59874 9.09706C3.51158 9.22711 3.40781 9.34887 3.20027 9.5924C2.67883 10.2043 2.4181 10.5102 2.26522 10.8301C1.91159 11.57 1.91159 12.43 2.26522 13.1699C2.41811 13.4898 2.67883 13.7957 3.20027 14.4076C3.40778 14.6511 3.51158 14.7729 3.59874 14.9029C3.79854 15.201 3.93721 15.5358 4.00672 15.8879C4.03705 16.0415 4.04977 16.201 4.07522 16.5199C4.13918 17.3213 4.17115 17.722 4.28923 18.0563C4.56233 18.8295 5.17051 19.4377 5.94371 19.7108C6.278 19.8288 6.6787 19.8608 7.48008 19.9248C7.79903 19.9502 7.95851 19.963 8.1121 19.9933C8.46417 20.0628 8.79896 20.2015 9.09706 20.4013C9.22711 20.4884 9.34887 20.5922 9.5924 20.7997C10.2043 21.3212 10.5102 21.5819 10.8301 21.7348C11.57 22.0884 12.43 22.0884 13.1699 21.7348C13.4898 21.5819 13.7957 21.3212 14.4076 20.7997C14.6511 20.5922 14.7729 20.4884 14.9029 20.4013C15.201 20.2015 15.5358 20.0628 15.8879 19.9933C16.0415 19.963 16.201 19.9502 16.5199 19.9248C17.3213 19.8608 17.722 19.8288 18.0563 19.7108C18.8295 19.4377 19.4377 18.8295 19.7108 18.0563C19.8288 17.722 19.8608 17.3213 19.9248 16.5199C19.9502 16.201 19.963 16.0415 19.9933 15.8879C20.0628 15.5358 20.2015 15.201 20.4013 14.9029C20.4884 14.7729 20.5922 14.6511 20.7997 14.4076C21.3212 13.7957 21.5819 13.4898 21.7348 13.1699C22.0884 12.43 22.0884 11.57 21.7348 10.8301C21.5819 10.5102 21.3212 10.2043 20.7997 9.5924C20.5922 9.34887 20.4884 9.22711 20.4013 9.09706C20.2015 8.79896 20.0628 8.46417 19.9933 8.1121C19.963 7.95851 19.9502 7.79903 19.9248 7.48008C19.8608 6.6787 19.8288 6.278 19.7108 5.94371C19.4377 5.17051 18.8295 4.56233 18.0563 4.28923C17.722 4.17115 17.3213 4.13918 16.5199 4.07522C16.201 4.04977 16.0415 4.03705 15.8879 4.00672C15.5358 3.93721 15.201 3.79854 14.9029 3.59874C14.7729 3.51158 14.6511 3.40781 14.4076 3.20027C13.7957 2.67883 13.4898 2.41811 13.1699 2.26522C12.43 1.91159 11.57 1.91159 10.8301 2.26522C10.5102 2.4181 10.2043 2.67883 9.5924 3.20027ZM16.3735 9.86314C16.6913 9.5453 16.6913 9.03 16.3735 8.71216C16.0557 8.39433 15.5403 8.39433 15.2225 8.71216L10.3723 13.5624L8.77746 11.9676C8.45963 11.6498 7.94432 11.6498 7.62649 11.9676C7.30866 12.2854 7.30866 12.8007 7.62649 13.1186L9.79678 15.2889C10.1146 15.6067 10.6299 15.6067 10.9478 15.2889L16.3735 9.86314Z"
fill="#1C274C" />
</svg>
</div>
</h4>
<p class="card-text listing-address text-muted mb-0">111 Maple Street | Hamilton</p>
<ul class="listing-details mt-1 mb-2">
<li class="nb-beds">4 <span>beds</span></li>
<li class="nb-baths">2 <span>baths</span></li>
<li class="size">2100 <span>FT²</span></li>
<li class="listing-type text-muted">| Room</li>
</ul>
<ul class="amenities text-secondary list-unstyled">
<li class="has">High-speed Wi-Fi</li>
<li class="has">Fully Furnished</li>
<li class="lacks">Utilities Included</li>
<li class="has">Laundry</li>
<li class="has">Heating + AC</li>
<li class="has">Parking</li>
<li class="has">Pet-friendly</li>
<li class="has">24/7 security surveillance</li>
</ul>
<p class="post-date card-text">
<small class="text-muted">Posted 7 hours ago</small>
</p>
</div>
<div class="options">
<div class="col m-3">
<div class="row">
<button class="btn btn-primary m-2">View Details</button>
<!-- Bootstrap primary button -->
</div>
<div class="row">
<button class="btn btn-secondary m-2">Message Landlord</button>
<!-- Bootstrap secondary button -->
</div>
<div class="row">
<button class="btn btn-success m-2">Find Roommates</button>
<!-- Bootstrap success button -->
</div>
</div>
</div>
</div>
</div>
</div>
<a type="button" class="bookmark-icon" onclick="toggleBookmark(event)">
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
<svg title="bookmark" width="30px" height="30" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M3 11.0975V16.0909C3 19.1875 3 20.7358 3.73411 21.4123C4.08422 21.735 4.52615 21.9377 4.99692 21.9915C5.98402 22.1045 7.13675 21.0849 9.44216 19.0458C10.4612 18.1445 10.9708 17.6938 11.5603 17.5751C11.8506 17.5166 12.1494 17.5166 12.4397 17.5751C13.0292 17.6938 13.5388 18.1445 14.5578 19.0458C16.8633 21.0849 18.016 22.1045 19.0031 21.9915C19.4739 21.9377 19.9158 21.735 20.2659 21.4123C21 20.7358 21 19.1875 21 16.0909V11.0975C21 6.80891 21 4.6646 19.682 3.3323C18.364 2 16.2426 2 12 2C7.75736 2 5.63604 2 4.31802 3.3323C3.5108 4.14827 3.19796 5.26881 3.07672 7"
stroke="#1C274D" stroke-width="1.5" stroke-linecap="round" />
<path d="M15 6H9" stroke="#1C274D" stroke-width="1.5" stroke-linecap="round" />
</svg>
</a>
</div>
<!-- House Listing 2 with Added Details -->
<div class="card house-listing mb-3">
<div class="row g-0">
<div class="col-md-4">
<img src="https://wvs.imgix.net/2020/11/slide2.jpg?auto=format&fit=&h=auto&ixlib=php-3.2.0&w=1136&s=33935014d3283111a6d98b8693a9b0a5" class="img-fluid rounded-start"
alt="House Image 1">
</div>
<div class="col-md-8">
<div class="card-body">
<div class="info">
<div class="d-flex justify-content-between">
<h5 class="card-title text-primary">$900<small
class="text-body-secondary text-secondary">/
month</small></h5>
<div class="university-affiliation text-danger">University of Toronto</div>
</div>
<h5 class="card-subtitle">
Room for Rent
<div class="verified-badge d-inline-block">
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
<svg title="verified" width="20px" height="20px" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M9.5924 3.20027C9.34888 3.4078 9.22711 3.51158 9.09706 3.59874C8.79896 3.79854 8.46417 3.93721 8.1121 4.00672C7.95851 4.03705 7.79903 4.04977 7.48008 4.07522C6.6787 4.13918 6.278 4.17115 5.94371 4.28923C5.17051 4.56233 4.56233 5.17051 4.28923 5.94371C4.17115 6.278 4.13918 6.6787 4.07522 7.48008C4.04977 7.79903 4.03705 7.95851 4.00672 8.1121C3.93721 8.46417 3.79854 8.79896 3.59874 9.09706C3.51158 9.22711 3.40781 9.34887 3.20027 9.5924C2.67883 10.2043 2.4181 10.5102 2.26522 10.8301C1.91159 11.57 1.91159 12.43 2.26522 13.1699C2.41811 13.4898 2.67883 13.7957 3.20027 14.4076C3.40778 14.6511 3.51158 14.7729 3.59874 14.9029C3.79854 15.201 3.93721 15.5358 4.00672 15.8879C4.03705 16.0415 4.04977 16.201 4.07522 16.5199C4.13918 17.3213 4.17115 17.722 4.28923 18.0563C4.56233 18.8295 5.17051 19.4377 5.94371 19.7108C6.278 19.8288 6.6787 19.8608 7.48008 19.9248C7.79903 19.9502 7.95851 19.963 8.1121 19.9933C8.46417 20.0628 8.79896 20.2015 9.09706 20.4013C9.22711 20.4884 9.34887 20.5922 9.5924 20.7997C10.2043 21.3212 10.5102 21.5819 10.8301 21.7348C11.57 22.0884 12.43 22.0884 13.1699 21.7348C13.4898 21.5819 13.7957 21.3212 14.4076 20.7997C14.6511 20.5922 14.7729 20.4884 14.9029 20.4013C15.201 20.2015 15.5358 20.0628 15.8879 19.9933C16.0415 19.963 16.201 19.9502 16.5199 19.9248C17.3213 19.8608 17.722 19.8288 18.0563 19.7108C18.8295 19.4377 19.4377 18.8295 19.7108 18.0563C19.8288 17.722 19.8608 17.3213 19.9248 16.5199C19.9502 16.201 19.963 16.0415 19.9933 15.8879C20.0628 15.5358 20.2015 15.201 20.4013 14.9029C20.4884 14.7729 20.5922 14.6511 20.7997 14.4076C21.3212 13.7957 21.5819 13.4898 21.7348 13.1699C22.0884 12.43 22.0884 11.57 21.7348 10.8301C21.5819 10.5102 21.3212 10.2043 20.7997 9.5924C20.5922 9.34887 20.4884 9.22711 20.4013 9.09706C20.2015 8.79896 20.0628 8.46417 19.9933 8.1121C19.963 7.95851 19.9502 7.79903 19.9248 7.48008C19.8608 6.6787 19.8288 6.278 19.7108 5.94371C19.4377 5.17051 18.8295 4.56233 18.0563 4.28923C17.722 4.17115 17.3213 4.13918 16.5199 4.07522C16.201 4.04977 16.0415 4.03705 15.8879 4.00672C15.5358 3.93721 15.201 3.79854 14.9029 3.59874C14.7729 3.51158 14.6511 3.40781 14.4076 3.20027C13.7957 2.67883 13.4898 2.41811 13.1699 2.26522C12.43 1.91159 11.57 1.91159 10.8301 2.26522C10.5102 2.4181 10.2043 2.67883 9.5924 3.20027ZM16.3735 9.86314C16.6913 9.5453 16.6913 9.03 16.3735 8.71216C16.0557 8.39433 15.5403 8.39433 15.2225 8.71216L10.3723 13.5624L8.77746 11.9676C8.45963 11.6498 7.94432 11.6498 7.62649 11.9676C7.30866 12.2854 7.30866 12.8007 7.62649 13.1186L9.79678 15.2889C10.1146 15.6067 10.6299 15.6067 10.9478 15.2889L16.3735 9.86314Z"
fill="#1C274C" />
</svg>
</div>
</h4>
<p class="card-text listing-address text-muted mb-0">254 Oak Lane | Toronto</p>
<ul class="listing-details mt-1 mb-2">
<li class="nb-beds">3 <span>beds</span></li>
<li class="nb-baths">1 <span>baths</span></li>
<li class="size">2200 <span>FT²</span></li>
<li class="listing-type text-muted">| Room</li>
</ul>
<ul class="amenities text-secondary list-unstyled">
<li class="has">Wifi Included</li>
<li class="lacks">Fully Furnished</li>
<li class="has">Utilities Included</li>
<li class="has">Laundry</li>
<li class="has">Heating</li>
<li class="lacks">Air conditioning</li>
<li class="has">Garage parking</li>
<li class="lacks">Pet-friendly</li>
<li class="has">Garden area</li>
</ul>
<p class="post-date card-text">
<small class="text-muted">Posted 3 days ago</small>
</p>
</div>
<div class="options">
<div class="col m-3">
<div class="row">
<button class="btn btn-primary m-2">View Details</button>
<!-- Bootstrap primary button -->
</div>
<div class="row">
<button class="btn btn-secondary m-2">Message Landlord</button>
<!-- Bootstrap secondary button -->
</div>
<div class="row">
<button class="btn btn-success m-2">Find Roommates</button>
<!-- Bootstrap success button -->
</div>
</div>
</div>
</div>
</div>
</div>
<a type="button" class="bookmark-icon" onclick="toggleBookmark(event)">
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
<svg title="bookmark" width="30px" height="30" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M3 11.0975V16.0909C3 19.1875 3 20.7358 3.73411 21.4123C4.08422 21.735 4.52615 21.9377 4.99692 21.9915C5.98402 22.1045 7.13675 21.0849 9.44216 19.0458C10.4612 18.1445 10.9708 17.6938 11.5603 17.5751C11.8506 17.5166 12.1494 17.5166 12.4397 17.5751C13.0292 17.6938 13.5388 18.1445 14.5578 19.0458C16.8633 21.0849 18.016 22.1045 19.0031 21.9915C19.4739 21.9377 19.9158 21.735 20.2659 21.4123C21 20.7358 21 19.1875 21 16.0909V11.0975C21 6.80891 21 4.6646 19.682 3.3323C18.364 2 16.2426 2 12 2C7.75736 2 5.63604 2 4.31802 3.3323C3.5108 4.14827 3.19796 5.26881 3.07672 7"
stroke="#1C274D" stroke-width="1.5" stroke-linecap="round" />
<path d="M15 6H9" stroke="#1C274D" stroke-width="1.5" stroke-linecap="round" />
</svg>
</a>
</div>
<!-- House Listing 3 with Added Details -->
<div class="card house-listing mb-3">
<div class="row g-0">
<div class="col-md-4">
<img src="https://www.mcmaster-housing.ca/276b/01.jpg" class="img-fluid rounded-start"
alt="House Image 1">
</div>
<div class="col-md-8">
<div class="card-body">
<div class="info">
<div class="d-flex justify-content-between">
<h5 class="card-title text-primary">$1650<small
class="text-body-secondary text-secondary">/
month</small></h5>
<div class="university-affiliation text-danger">University of Ottawa</div>
</div>
<h5 class="card-subtitle">
House for Rent
<div class="verified-badge d-inline-block">
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
<svg title="verified" width="20px" height="20px" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M9.5924 3.20027C9.34888 3.4078 9.22711 3.51158 9.09706 3.59874C8.79896 3.79854 8.46417 3.93721 8.1121 4.00672C7.95851 4.03705 7.79903 4.04977 7.48008 4.07522C6.6787 4.13918 6.278 4.17115 5.94371 4.28923C5.17051 4.56233 4.56233 5.17051 4.28923 5.94371C4.17115 6.278 4.13918 6.6787 4.07522 7.48008C4.04977 7.79903 4.03705 7.95851 4.00672 8.1121C3.93721 8.46417 3.79854 8.79896 3.59874 9.09706C3.51158 9.22711 3.40781 9.34887 3.20027 9.5924C2.67883 10.2043 2.4181 10.5102 2.26522 10.8301C1.91159 11.57 1.91159 12.43 2.26522 13.1699C2.41811 13.4898 2.67883 13.7957 3.20027 14.4076C3.40778 14.6511 3.51158 14.7729 3.59874 14.9029C3.79854 15.201 3.93721 15.5358 4.00672 15.8879C4.03705 16.0415 4.04977 16.201 4.07522 16.5199C4.13918 17.3213 4.17115 17.722 4.28923 18.0563C4.56233 18.8295 5.17051 19.4377 5.94371 19.7108C6.278 19.8288 6.6787 19.8608 7.48008 19.9248C7.79903 19.9502 7.95851 19.963 8.1121 19.9933C8.46417 20.0628 8.79896 20.2015 9.09706 20.4013C9.22711 20.4884 9.34887 20.5922 9.5924 20.7997C10.2043 21.3212 10.5102 21.5819 10.8301 21.7348C11.57 22.0884 12.43 22.0884 13.1699 21.7348C13.4898 21.5819 13.7957 21.3212 14.4076 20.7997C14.6511 20.5922 14.7729 20.4884 14.9029 20.4013C15.201 20.2015 15.5358 20.0628 15.8879 19.9933C16.0415 19.963 16.201 19.9502 16.5199 19.9248C17.3213 19.8608 17.722 19.8288 18.0563 19.7108C18.8295 19.4377 19.4377 18.8295 19.7108 18.0563C19.8288 17.722 19.8608 17.3213 19.9248 16.5199C19.9502 16.201 19.963 16.0415 19.9933 15.8879C20.0628 15.5358 20.2015 15.201 20.4013 14.9029C20.4884 14.7729 20.5922 14.6511 20.7997 14.4076C21.3212 13.7957 21.5819 13.4898 21.7348 13.1699C22.0884 12.43 22.0884 11.57 21.7348 10.8301C21.5819 10.5102 21.3212 10.2043 20.7997 9.5924C20.5922 9.34887 20.4884 9.22711 20.4013 9.09706C20.2015 8.79896 20.0628 8.46417 19.9933 8.1121C19.963 7.95851 19.9502 7.79903 19.9248 7.48008C19.8608 6.6787 19.8288 6.278 19.7108 5.94371C19.4377 5.17051 18.8295 4.56233 18.0563 4.28923C17.722 4.17115 17.3213 4.13918 16.5199 4.07522C16.201 4.04977 16.0415 4.03705 15.8879 4.00672C15.5358 3.93721 15.201 3.79854 14.9029 3.59874C14.7729 3.51158 14.6511 3.40781 14.4076 3.20027C13.7957 2.67883 13.4898 2.41811 13.1699 2.26522C12.43 1.91159 11.57 1.91159 10.8301 2.26522C10.5102 2.4181 10.2043 2.67883 9.5924 3.20027ZM16.3735 9.86314C16.6913 9.5453 16.6913 9.03 16.3735 8.71216C16.0557 8.39433 15.5403 8.39433 15.2225 8.71216L10.3723 13.5624L8.77746 11.9676C8.45963 11.6498 7.94432 11.6498 7.62649 11.9676C7.30866 12.2854 7.30866 12.8007 7.62649 13.1186L9.79678 15.2889C10.1146 15.6067 10.6299 15.6067 10.9478 15.2889L16.3735 9.86314Z"
fill="#1C274C" />
</svg>
</div>
</h4>
<p class="card-text listing-address text-muted mb-0">367 Pine Crescent | Ottawa</p>
<ul class="listing-details mt-1 mb-2">
<li class="nb-beds">2 <span>beds</span></li>
<li class="nb-baths">2 <span>baths</span></li>
<li class="size">1600 <span>FT²</span></li>
<li class="listing-type text-muted">| House</li>
</ul>
<ul class="amenities text-secondary list-unstyled">
<li class="has">High-speed Wi-Fi</li>
<li class="lacks">Fully Furnished</li>
<li class="lacks">Utilities Included</li>
<li class="has">Laundry</li>
<li class="has">Heating + AC</li>
<li class="has">Parking</li>
<li class="has">Pet-friendly</li>
<li class="has">Newly Renovated</li>
</ul>
<p class="post-date card-text">
<small class="text-muted">Posted 2 hours ago</small>
</p>
</div>
<div class="options">
<div class="col m-3">
<div class="row">
<button class="btn btn-primary m-2">View Details</button>
<!-- Bootstrap primary button -->
</div>
<div class="row">
<button class="btn btn-secondary m-2">Message Landlord</button>
<!-- Bootstrap secondary button -->
</div>
<div class="row">
<button class="btn btn-success m-2">Find Roommates</button>
<!-- Bootstrap success button -->
</div>
</div>
</div>
</div>
</div>
</div>
<a type="button" class="bookmark-icon" onclick="toggleBookmark(event)">
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
<svg title="bookmark" width="30px" height="30" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M3 11.0975V16.0909C3 19.1875 3 20.7358 3.73411 21.4123C4.08422 21.735 4.52615 21.9377 4.99692 21.9915C5.98402 22.1045 7.13675 21.0849 9.44216 19.0458C10.4612 18.1445 10.9708 17.6938 11.5603 17.5751C11.8506 17.5166 12.1494 17.5166 12.4397 17.5751C13.0292 17.6938 13.5388 18.1445 14.5578 19.0458C16.8633 21.0849 18.016 22.1045 19.0031 21.9915C19.4739 21.9377 19.9158 21.735 20.2659 21.4123C21 20.7358 21 19.1875 21 16.0909V11.0975C21 6.80891 21 4.6646 19.682 3.3323C18.364 2 16.2426 2 12 2C7.75736 2 5.63604 2 4.31802 3.3323C3.5108 4.14827 3.19796 5.26881 3.07672 7"
stroke="#1C274D" stroke-width="1.5" stroke-linecap="round" />
<path d="M15 6H9" stroke="#1C274D" stroke-width="1.5" stroke-linecap="round" />
</svg>
</a>
</div>
</div>
</main>
<footer class="bd-footer py-4 py-md-5 bg-secondary bg-body-tertiary">
<div class="container py-4 py-md-5 px-4 px-md-3 text-body-secondary">
<div class="row">
<div class="col-lg-3 mb-3">
<a class="d-inline-flex align-items-center gap-1 mb-2 text-body-emphasis text-decoration-none"
href="./index.html" aria-label="Bootstrap">
<img src="https://placehold.co/40x32?text=Logo" alt="FindAHome Logo">
<span class="fs-5" style="color: wheat;">FindAHome</span>
</a>
<ul class="list-unstyled small">
<li class="mb-2 text-tertiary">Designed and built by Sevhena, Maarij, Mehak, Austin and Nida for
the 5th Milestone of the
SFWRENG/COMPCI 4HC3 course at McMaster University.</li>
<li class="mb-2 text-tertiary">Fall 2023</li>
</ul>
</div>
<div class="links col-6 col-lg-3 mb-3">
<h5 class="text-tertiary">Links</h5>
<ul class="list-unstyled">
<li class="mb-2"><a href="./index.html">Home</a></li>
<li class="mb-2"><a href="./search.html">Listings</a></li>
<li class="mb-2"><a href="#Renters-Hub">Renters Hub</a></li>
<li class="mb-2"><a href="#My-Account">My Account</a></li>
</ul>
</div>
<div class="links col-6 col-lg-3 mb-3">
<h5 class="text-tertiary">About Us</h5>
<ul class="list-unstyled">
<li class="mb-2"><a href="#About-Us">About Us</a></li>
</ul>
</div>
<div class="links col-6 col-lg-3 mb-3">
<h5 class="text-tertiary">Project Report</h5>
<ul class="list-unstyled">
<li class="mb-2"><a href="#report" rel="noopener">Project Report</a></li>
</ul>
</div>
</div>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="./home.js"></script>
</body>