Advertisement
faizulclass

profile.php

Nov 8th, 2024 (edited)
10
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.57 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>Profile</title>
  7.     <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
  8. </head>
  9. <body>
  10. <?php
  11.  
  12. // Include header
  13. include('header.php');
  14. ?>
  15.     <div class="container">
  16.         <div class="row">
  17.             <!-- Include Left Navigation -->
  18.             <?php include('nav.php'); ?>
  19.  
  20.             <!-- Main Content Section -->
  21.             <div class="col-md-9">
  22.                 <h2>Profile</h2>
  23.                 <table class="table">
  24.                     <tr>
  25.                         <th>Full Name</th>
  26.                         <td><?php echo htmlspecialchars($user['full_name']); ?></td>
  27.                     </tr>
  28.                     <tr>
  29.                         <th>Username</th>
  30.                         <td><?php echo htmlspecialchars($user['username']); ?></td>
  31.                     </tr>
  32.                     <tr>
  33.                         <th>Email</th>
  34.                         <td><?php echo htmlspecialchars($user['email']); ?></td>
  35.                     </tr>
  36.                     <tr>
  37.                         <th>Created At</th>
  38.                         <td><?php echo htmlspecialchars($user['created_at']); ?></td>
  39.                     </tr>
  40.                 </table>
  41.                 <a href="edit_profile.php" class="btn btn-primary">Edit Profile</a>
  42.             </div>
  43.         </div>
  44.     </div>
  45.     <?php
  46. // Include footer
  47. include('footer.php');
  48. ?>
  49. </body>
  50. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement