34581-vm/index.php
Flatlogic Bot 4ed2abbf31 1.0
2025-10-02 02:55:03 +00:00

30 lines
1.0 KiB
PHP

<?php
require_once __DIR__ . '/includes/common.php';
require_login();
$title = 'Dashboard';
require_once __DIR__ . '/includes/header.php';
?>
<div class="px-4 py-5 my-5 text-center">
<h1 class="display-5 fw-bold">Welcome to Your TimeSheet</h1>
<div class="col-lg-6 mx-auto">
<p class="lead mb-4">This is your dashboard. The timesheet entry table will be displayed here soon.</p>
<p class="lead mb-4">You are logged in as <strong><?= htmlspecialchars(get_user_name()) ?></strong>.</p>
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center">
<a href="#" class="btn btn-primary btn-lg px-4 gap-3">Enter Hours</a>
<a href="#" class="btn btn-outline-secondary btn-lg px-4">View Reports</a>
</div>
</div>
</div>
<div class="alert alert-info">
<h4 class="alert-heading">Under Construction!</h4>
<p>The main functionality for logging hours and viewing reports is currently being built. Check back soon!</p>
</div>
<?php
require_once __DIR__ . '/includes/footer.php';
?>