35716-vm/dashboard.php
Flatlogic Bot ed50444c87 TTP.1
2025-11-14 14:12:15 +00:00

56 lines
2.6 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dashboard - TeaTime Payroll</title>
<meta name="robots" content="noindex, nofollow">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<link rel="stylesheet" href="assets/css/custom.css">
</head>
<body class="bg-light">
<header class="dashboard-header p-3 mb-4">
<div class="container d-flex justify-content-between align-items-center">
<a class="navbar-brand fw-bold" href="index.php">TeaTime Payroll</a>
<div>
<span class="text-muted me-3">Welcome, Employee!</span>
<a href="index.php" class="btn btn-outline-secondary">Logout</a>
</div>
</div>
</header>
<main class="container">
<div class="row">
<div class="col-12">
<h1 class="h3 mb-4">Your Dashboard</h1>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="card card-dashboard">
<div class="card-header">
<h5 class="card-title mb-0">Tax Withholding Settings</h5>
</div>
<div class="card-body">
<p class="text-muted">Control whether federal and state taxes are withheld from your paycheck.</p>
<div class="form-check form-switch p-3 border rounded-3 d-flex justify-content-between align-items-center">
<div>
<label class="form-check-label h6" for="taxWithholdingSwitch">Enable Tax Withholding</label>
<p class="mb-0 text-muted small">Taxes will be automatically calculated and withheld.</p>
</div>
<input class="form-check-input" type="checkbox" id="taxWithholdingSwitch" checked disabled>
</div>
<div class="alert alert-info mt-3">This feature is coming soon! You will be able to manage your tax preferences from here.</div>
</div>
</div>
</div>
</div>
</main>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>