mirror of
https://github.com/Djeeberjr/fw-anwesenheit.git
synced 2025-07-02 01:04:16 +00:00
24 lines
676 B
HTML
24 lines
676 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Anwesenheit</title>
|
|
</head>
|
|
|
|
<body class="bg-gradient-to-br from-blue-100 to-indigo-200 min-h-screen flex flex-col items-center justify-start py-10">
|
|
<script type="module" src="/src/main.ts"></script>
|
|
<div class="text-center space-y-6 mb-10">
|
|
<h1 class="text-3xl sm:text-4xl font-bold text-gray-800">
|
|
Anwesenheit
|
|
</div>
|
|
<button
|
|
class="px-6 py-3 text-lg font-semibold text-white bg-indigo-600 rounded-2xl shadow-md hover:bg-indigo-700 transition">
|
|
Download CSV
|
|
</button>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|