35239-vm/dashboard.php
Flatlogic Bot ccc924ba43 ver1
2025-10-26 14:24:09 +00:00

19 lines
813 B
PHP

<?php require_once __DIR__ . '/includes/header.php'; ?>
<?php require_once __DIR__ . '/includes/sidebar.php'; ?>
<h1 class="h2">Dashboard</h1>
<p>Welcome, <?php echo htmlspecialchars($_SESSION['user_name']); ?>! This is your main dashboard. From here you can manage all aspects of your business.</p>
<div class="row">
<div class="col-md-6">
<div class="card">
<div class="card-body">
<h5 class="card-title">Company Setup</h5>
<p class="card-text">Before you can start creating invoices or tracking inventory, you need to set up your company details.</p>
<a href="/company_setup.php" class="btn btn-primary">Go to Company Setup</a>
</div>
</div>
</div>
</div>
<?php require_once __DIR__ . '/includes/footer.php'; ?>