/
home
/
u839856410
/
domains
/
frajuuconnect.online
/
public_html
/
Upload File
HOME
<?php // Make sure session is started if (session_status() == PHP_SESSION_NONE) { session_start(); } ?> <style> /* Sidebar styles */ .sidebar { width: 220px; position: fixed; height: 100%; background: #314E9D; color: #fff; padding-top: 20px; } .sidebar a { display: block; color: #fff; padding: 12px 20px; text-decoration: none; transition: 0.3s; border-radius: 6px; margin: 5px 10px; } .sidebar a:hover { background: #D10024; color: #fff; } .sidebar .welcome { text-align: center; margin-bottom: 20px; font-weight: bold; font-size: 16px; } .content { margin-left: 240px; /* adjust according to sidebar width */ padding: 20px; } </style> <div class="sidebar"> <div class="welcome"> Welcome<br> <?php echo $_SESSION['agent_name'] ?? 'Agent'; ?> </div> <a href="admin-dashboard.php">Dashboard</a> <hr style="border-color: rgba(255,255,255,0.2)"> <a href="add-house-sale.php">Add House for Sale</a> <a href="add-house-rent.php">Add House for Rent</a> <a href="add-room.php">Add Room for Rent</a> <a href="add-plot.php">Add Plot for Sale</a> <hr style="border-color: rgba(255,255,255,0.2)"> <a href="logout.php">Logout</a> </div>