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>Profile</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">
- <div class="row">
- <!-- Include Left Navigation -->
- <?php include('nav.php'); ?>
- <!-- Main Content Section -->
- <div class="col-md-9">
- <h2>Profile</h2>
- <table class="table">
- <tr>
- <th>Full Name</th>
- <td><?php echo htmlspecialchars($user['full_name']); ?></td>
- </tr>
- <tr>
- <th>Username</th>
- <td><?php echo htmlspecialchars($user['username']); ?></td>
- </tr>
- <tr>
- <th>Email</th>
- <td><?php echo htmlspecialchars($user['email']); ?></td>
- </tr>
- <tr>
- <th>Created At</th>
- <td><?php echo htmlspecialchars($user['created_at']); ?></td>
- </tr>
- </table>
- <a href="edit_profile.php" class="btn btn-primary">Edit Profile</a>
- </div>
- </div>
- </div>
- <?php
- // Include footer
- include('footer.php');
- ?>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement