-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimport-campaign.html
More file actions
54 lines (49 loc) · 2.12 KB
/
import-campaign.html
File metadata and controls
54 lines (49 loc) · 2.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Import Campaign - 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>
<button onclick="logout()" class="text-gray-400 hover:text-red-400 text-sm">Logout</button>
</div>
</div>
</nav>
<main class="max-w-4xl mx-auto px-6 py-8">
<h2 class="text-2xl font-bold mb-6">Import Campaign</h2>
<div class="bg-gray-800 rounded-lg p-6 mb-6">
<p class="text-gray-300 mb-4">
Import your approved social media calendar (Feb 12-18) into MaxiSuite.
</p>
<button id="import-btn" class="bg-yellow-500 hover:bg-yellow-600 text-gray-900 font-bold px-6 py-3 rounded-lg">
Import Feb 12-18 Campaign
</button>
</div>
<div id="import-status" class="hidden"></div>
<div id="preview" class="hidden mt-6">
<h3 class="text-xl font-bold mb-4">Preview - Posts to Import:</h3>
<div id="preview-content" class="space-y-3"></div>
<div class="mt-6 flex space-x-4">
<button id="confirm-import" class="bg-green-700 hover:bg-green-600 text-white font-bold px-6 py-3 rounded-lg">
Confirm Import
</button>
<a href="queue.html" class="bg-gray-700 hover:bg-gray-600 text-white font-bold px-6 py-3 rounded-lg inline-block">
Cancel
</a>
</div>
</div>
</main>
<script src="js/import-campaign.js"></script>
<script src="js/auth.js"></script>
<script>requireAuth();</script>
</body>
</html>