Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>User Dashboard</title>
- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
- </head>
- <body>
- <?php
- // Include header
- include('header.php');
- ?>
- <div class="container-fluid">
- <div class="row">
- <!-- Left Navigation Menu -->
- <div class="col-md-2 bg-light p-3">
- <h4>Navigation</h4>
- <ul class="nav flex-column">
- <li class="nav-item">
- <a class="nav-link" href="user_page.php">Dashboard</a>
- </li>
- <li class="nav-item">
- <a class="nav-link" href="profile.php">Profile</a>
- </li>
- <li class="nav-item">
- <a class="nav-link" href="task_list.php">Task List</a>
- </li>
- <li class="nav-item">
- <a class="nav-link" href="add_task.php">Add Task</a>
- </li>
- <li class="nav-item">
- <a class="nav-link" href="logout.php">Logout</a>
- </li>
- </ul>
- </div>
- <!-- Main Content -->
- <div class="col-md-10">
- <h2>Welcome, <?php echo $_SESSION['username']; ?>!</h2>
- <p>This is your user dashboard. Use the navigation menu to access different sections.</p>
- </div>
- </div>
- </div>
- <?php
- // Include footer
- include('footer.php');
- ?>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement