-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalendar.html
More file actions
71 lines (66 loc) · 3.21 KB
/
calendar.html
File metadata and controls
71 lines (66 loc) · 3.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Calendar - MaxiSuite</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-900 text-gray-100">
<nav class="bg-gray-800 border-b border-gray-700 px-6 py-4">
<div class="max-w-7xl mx-auto flex items-center justify-between">
<div class="flex items-center space-x-2">
<span class="text-2xl">₿</span>
<h1 class="text-xl font-bold text-yellow-500">MaxiSuite</h1>
</div>
<div class="flex space-x-6">
<a href="index.html" class="text-gray-400 hover:text-white">Compose</a>
<a href="queue.html" class="text-gray-400 hover:text-white">Queue</a>
<a href="calendar.html" class="text-yellow-500 font-medium">Calendar</a>
<a href="settings.html" class="text-gray-400 hover:text-white">Settings</a>
</div>
</div>
<button onclick="logout()" class="text-gray-400 hover:text-red-400 text-sm">Logout</button>
</div>
</div>
</nav>
<main class="max-w-7xl mx-auto px-6 py-8">
<div class="flex items-center justify-between mb-6">
<h2 class="text-2xl font-bold" id="calendar-title">February 2026</h2>
<div class="flex space-x-2">
<button id="prev-month" class="bg-gray-700 hover:bg-gray-600 px-4 py-2 rounded">←</button>
<button id="next-month" class="bg-gray-700 hover:bg-gray-600 px-4 py-2 rounded">→</button>
</div>
</div>
<!-- Calendar Grid -->
<div class="bg-gray-800 rounded-lg overflow-hidden">
<!-- Weekday headers -->
<div class="grid grid-cols-7 border-b border-gray-700">
<div class="p-3 text-center text-sm font-medium text-gray-400">Sun</div>
<div class="p-3 text-center text-sm font-medium text-gray-400">Mon</div>
<div class="p-3 text-center text-sm font-medium text-gray-400">Tue</div>
<div class="p-3 text-center text-sm font-medium text-gray-400">Wed</div>
<div class="p-3 text-center text-sm font-medium text-gray-400">Thu</div>
<div class="p-3 text-center text-sm font-medium text-gray-400">Fri</div>
<div class="p-3 text-center text-sm font-medium text-gray-400">Sat</div>
</div>
<!-- Calendar days -->
<div id="calendar-grid" class="grid grid-cols-7">
<!-- Days will be inserted here -->
</div>
</div>
<!-- Selected day details -->
<div id="day-details" class="hidden mt-6">
<h3 class="text-xl font-bold mb-4" id="selected-date"></h3>
<div id="day-posts" class="space-y-3">
<!-- Posts for selected day will appear here -->
</div>
</div>
</main>
<script src="js/calendar.js"></script>
<script src="js/auth.js"></script>
<script src="js/auto-import-full-campaign.js"></script>
<script src="js/campaign-status.js"></script>
<script>requireAuth();</script>
</body>
</html>