25 lines
654 B
PHP
25 lines
654 B
PHP
<?php
|
|
require_once 'includes/header.php';
|
|
?>
|
|
|
|
<div class="container">
|
|
<h1 class="mb-4">Welcome, Player!</h1>
|
|
|
|
<div class="card bg-surface text-light p-4">
|
|
<div class="card-body">
|
|
<h2 class="card-title">Your Status</h2>
|
|
<p><strong>Level:</strong> 1</p>
|
|
<p><strong>XP:</strong> 0</p>
|
|
<p><strong>Role:</strong> Learner</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mt-5">
|
|
<h3 class="text-center">Your journey continues...</h3>
|
|
<p class="text-center text-muted">Learning Kits and Achievements are coming soon!</p>
|
|
</div>
|
|
</div>
|
|
|
|
<?php
|
|
require_once 'includes/footer.php';
|
|
?>
|