17 lines
603 B
PHP
17 lines
603 B
PHP
<?php require_once __DIR__ . '/includes/header.php'; ?>
|
|
|
|
<div class="container-fluid">
|
|
<h1 class="h2">My Profile</h1>
|
|
<p>Your account information.</p>
|
|
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<p><strong>Name:</strong> <?php echo htmlspecialchars($current_user['name']); ?></p>
|
|
<p><strong>Email:</strong> <?php echo htmlspecialchars($current_user['email']); ?></p>
|
|
<p><strong>Role:</strong> <?php echo htmlspecialchars($current_user['role_name']); ?></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php require_once __DIR__ . '/includes/footer.php'; ?>
|