46 lines
2.3 KiB
HTML
46 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="manifest" href="/manifest.json">
|
|
<title>TimeTracker</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="style/style.css">
|
|
</head>
|
|
|
|
<body class="bg-gray-100">
|
|
|
|
<div id="app" class="min-h-screen">
|
|
<header class="bg-white shadow-md">
|
|
<nav class="container mx-auto px-6 py-3 flex justify-between items-center">
|
|
<div class="flex items-center">
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="text-blue-600"><path d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10z"></path><path d="M12 6v6l4 2"></path></svg>
|
|
<h1 class="text-xl font-bold text-gray-800 ml-2">TimeTracker</h1>
|
|
</div>
|
|
<div id="nav-user-controls" class="hidden flex items-center">
|
|
<span id="welcome-message" class="text-gray-600 mr-3 text-sm sm:text-base truncate"></span>
|
|
<button id="sign-out-btn" class="bg-red-500 text-white py-2 px-3 sm:px-4 rounded-lg hover:bg-red-600 text-sm whitespace-nowrap">Sign Out</button>
|
|
</div>
|
|
</nav>
|
|
</header>
|
|
|
|
<main class="container mx-auto px-6 py-8">
|
|
<div id="message-box" class="hidden"></div>
|
|
<div id="loading-spinner" class="hidden text-center py-4"></div>
|
|
<div id="auth-view"></div>
|
|
<div id="employee-dashboard" class="hidden"></div>
|
|
<div id="admin-dashboard" class="hidden"></div>
|
|
<div id="admin-archive-view" class="hidden"></div>
|
|
<div id="admin-time-off-history-view" class="hidden"></div>
|
|
</main>
|
|
|
|
<div id="modal-container"></div>
|
|
</div>
|
|
|
|
<script type="module" src="js/main.js"></script></body>
|
|
</html> |