-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmissions.html
108 lines (96 loc) · 5.04 KB
/
missions.html
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Missions</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="preload" as="style" onload="this.rel='stylesheet'" href="/assets/css/missions.css">
<script src="/assets/dist/tailwind.js"></script>
<meta name="description"
content="Complete missions to earn rewards and enhance your professional profile on Constellation Networking.">
<meta name="keywords" content="Constellation Networking, missions, rewards, professional profile">
<meta name="author" content="Constellation Networking Team">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-FTXQ5HF0C5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-FTXQ5HF0C5');
</script>
<!-- Firebase -->
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-firestore.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-auth.js"></script>
<script src="assets/js/firebase_init.js"></script>
</head>
<body class="bg-[#161616] text-white">
<div class="flex flex-1 min-h-full">
<!-- Sidebar -->
<div class="w-64 bg-[#1E1E1E] p-4 overflow-auto">
<a href="/index.html">
<div class="flex items-center mb-8">
<img src="/assets/img/icon.png" class="mr-2 rounded-md" width="40" height="40">
<span class="text-xl font-bold">Constellation</span>
</div>
</a>
<nav>
<ul>
<!-- <li class="mb-5"><a href="/index.html" class="flex items-center text-gray-400 hover:text-white"><i
class="fas fa-home mr-2"></i> Home</a></li> -->
<li class="mb-5"><a href="#" class="flex items-center text-white"><i class="fas fa-cube mr-2"></i>
My Missions</a></li>
<li class="mb-5"><a href="/missions_hub.html"
class="flex items-center text-gray-400 hover:text-white"><i class="fas fa-store mr-2"></i>
Missions Hub (still in development)</a></li>
<li class="mb-5"><a href="/rewards.html" class="flex items-center text-gray-400 hover:text-white"><i
class="fas fa-tshirt mr-2"></i> Rewards</a></li>
</ul>
</nav>
</div>
<!-- Main Content -->
<div class="flex-1 p-6">
<!-- Header -->
<div class="flex justify-between items-center mb-6">
<div></div>
<div class="flex items-center">
<span id="user-novacoins" class="text-yellow-400 font-bold"></span>
<button class="text-gray-400 hover:text-gray-600 duration-300 ml-4 fas fa-bell"></button>
<button class="text-gray-400 hover:text-gray-600 duration-300 mx-4 fas fa-plus"></button>
<div>
<a href="/account.html">
<img src="/assets/img/default_user.jpeg" id="user-profile-img" alt="User Avatar"
class="rounded-full" width="40" height="40">
</a>
</div>
</div>
</div>
<!-- My Missions Section -->
<div id="section:all-missions" class="mb-10">
<div class="flex justify-between items-center mb-4">
<h2 class="text-2xl font-bold">My Missions</h2>
<a href="#" class="text-blue-500 hover:text-blue-600 duration-300">View all</a>
</div>
<div class="grid grid-cols-3 gap-6" id="missions-container">
<!-- Individual mission cards go here -->
</div>
</div>
<!-- Completed Missions Section -->
<div id="section:completed-missions" class="mb-10">
<div class="flex justify-between items-center mb-4">
<h2 class="text-2xl font-bold">Completed Missions</h2>
<a href="#" class="text-blue-500 hover:text-blue-600 duration-300">View all</a>
</div>
<div class="grid grid-cols-3 gap-6" id="completed-missions-container">
<!-- Individual mission cards go here -->
</div>
</div>
</div>
</div>
</body>
<script src="/assets/js/helpers/token_validator.js"></script>
<script src="/assets/js/missions.js"></script>
</html>