100 lines
4.0 KiB
PHP
100 lines
4.0 KiB
PHP
<!-- sidebar start -->
|
|
|
|
<section class="sidebar_sec">
|
|
<div class="inn_sidebar">
|
|
<ul>
|
|
<li class="<?php if ($currentPage == 'dashboard') {
|
|
echo 'active';
|
|
} ?>">
|
|
<a href="index.php">
|
|
<span>
|
|
<img loading="lazy" src="../assets/images/dashboard.svg" alt="dashboard">
|
|
</span>
|
|
<span>Dashboard</span>
|
|
</a>
|
|
</li>
|
|
<li class="<?php if ($currentPage == 'property-listing') {
|
|
echo 'active';
|
|
} ?>">
|
|
<a href="property-listing.php">
|
|
<span>
|
|
<img loading="lazy" src="../assets/images/my_property.svg" alt="my_property">
|
|
</span>
|
|
<span>Property Listing</span>
|
|
</a>
|
|
</li>
|
|
<li class="<?php if ($currentPage == 'leads') {
|
|
echo 'active';
|
|
} ?>">
|
|
<a href="leads.php">
|
|
<span>
|
|
<img loading="lazy" src="../assets/images/leads.svg" alt="leads">
|
|
</span>
|
|
<span> Leads</span>
|
|
</a>
|
|
</li>
|
|
<li class="<?php if ($currentPage == 'appointments') {
|
|
echo 'active';
|
|
} ?>">
|
|
<a href="appointments.php">
|
|
<span>
|
|
<img loading="lazy" src="../assets/images/appointments.svg" alt="appointments">
|
|
</span>
|
|
<span>Appointments</span>
|
|
</a>
|
|
</li>
|
|
<li class="<?php if ($currentPage == '') {
|
|
echo 'active';
|
|
} ?>">
|
|
<a href="my-properties.php">
|
|
<span>
|
|
<img loading="lazy" src="../assets/images/my_properties.svg" alt="my_properties">
|
|
</span>
|
|
<span>My Properties</span>
|
|
</a>
|
|
</li>
|
|
<li class="<?php if ($currentPage == '') {
|
|
echo 'active';
|
|
} ?>">
|
|
<a href="wishlisted-properties.php">
|
|
<span>
|
|
<img loading="lazy" src="../assets/images/wishlisted.svg" alt="wishlisted">
|
|
</span>
|
|
<span>My Wishlisted Properties</span>
|
|
</a>
|
|
</li>
|
|
<li class="<?php if ($currentPage == '') {
|
|
echo 'active';
|
|
} ?>">
|
|
<a href="recently-properties.php">
|
|
<span>
|
|
<img loading="lazy" src="../assets/images/recently_view.svg" alt="recently_view">
|
|
</span>
|
|
<span>Recently View Propertise</span>
|
|
</a>
|
|
</li>
|
|
<li class="<?php if ($currentPage == '') {
|
|
echo 'active';
|
|
} ?>">
|
|
<a href="contacted-property.php">
|
|
<span>
|
|
<img loading="lazy" src="../assets/images/contacted.svg" alt="contacted">
|
|
</span>
|
|
<span>Contacted Properties</span>
|
|
</a>
|
|
</li>
|
|
<li class="<?php if ($currentPage == 'profile') {
|
|
echo 'active';
|
|
} ?>">
|
|
<a href="profile.php">
|
|
<span>
|
|
<img loading="lazy" src="../assets/images/my_profile.svg" alt="my_profile">
|
|
</span>
|
|
<span>My Profile</span>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- sidebar end --> |