feat: add date selection calendar page

This commit is contained in:
2026-08-12 12:09:51 +02:00
parent 73d8ee5a8f
commit cc1bb0934e
4 changed files with 317 additions and 0 deletions
+44
View File
@@ -0,0 +1,44 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<title>Wähle das Datum Date-Planer</title>
<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=Nunito:wght@400;600;700&family=Quicksand:wght@600;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="datetime.css" />
</head>
<body class="page-datetime has-continue-bar">
<div class="heart-background" aria-hidden="true">
<div class="heart-shape"></div>
</div>
<main class="container">
<a class="back-link" href="activity.html"> Zurück</a>
<div class="intro">
<h1>Wann soll es losgehen? 💌</h1>
<p id="activitySummary">Wähle das Datum für euer Date.</p>
</div>
<section class="calendar-card" aria-label="Kalender">
<div class="calendar-header">
<button id="prevMonthBtn" class="month-nav-btn" type="button" aria-label="Vorheriger Monat"></button>
<h2 id="monthLabel" class="month-label">Monat Jahr</h2>
<button id="nextMonthBtn" class="month-nav-btn" type="button" aria-label="Nächster Monat"></button>
</div>
<div class="weekday-row" id="weekdayRow"></div>
<div class="day-grid" id="dayGrid"></div>
</section>
</main>
<div class="continue-bar">
<div class="container">
<button id="continueBtn" class="btn btn-primary" type="button" disabled>Weiter</button>
</div>
</div>
<script src="datetime.js" defer></script>
</body>
</html>