30 lines
953 B
HTML
30 lines
953 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Morning Meeting Planner</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
<script src="https://cdn.sheetjs.com/xlsx-0.20.3/package/dist/xlsx.full.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Morning Meeting Planner</h1>
|
|
</header>
|
|
|
|
<nav class="tabs">
|
|
<button type="button" class="tab-btn active" data-tab="employees">Mitarbeiter</button>
|
|
<button type="button" class="tab-btn" data-tab="planning">Monatsplanung</button>
|
|
<button type="button" class="tab-btn" data-tab="data">Daten</button>
|
|
</nav>
|
|
|
|
<main>
|
|
<section id="tab-employees" class="tab-content"></section>
|
|
<section id="tab-planning" class="tab-content hidden"></section>
|
|
<section id="tab-data" class="tab-content hidden"></section>
|
|
</main>
|
|
|
|
<script type="module" src="js/app.js"></script>
|
|
</body>
|
|
</html>
|