Spaces:
Running
Running
Update log.html
Browse files
log.html
CHANGED
|
@@ -136,6 +136,26 @@ Confirm Donation
|
|
| 136 |
</div>
|
| 137 |
|
| 138 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 139 |
|
| 140 |
<script>
|
| 141 |
|
|
@@ -261,6 +281,15 @@ localStorage.setItem("donationData", JSON.stringify({
|
|
| 261 |
location.href="confirmation.html";
|
| 262 |
}
|
| 263 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 264 |
</script>
|
| 265 |
|
| 266 |
</body>
|
|
|
|
| 136 |
</div>
|
| 137 |
|
| 138 |
</div>
|
| 139 |
+
|
| 140 |
+
<nav class="flex justify-between items-center px-10 py-5 bg-emerald-600 text-white">
|
| 141 |
+
|
| 142 |
+
<a href="log.html" class="text-2xl font-extrabold">
|
| 143 |
+
NourishNet
|
| 144 |
+
</a>
|
| 145 |
+
|
| 146 |
+
<div class="hidden md:flex gap-10 font-medium items-center">
|
| 147 |
+
|
| 148 |
+
<a href="dashboard.html">Dashboard</a>
|
| 149 |
+
<a href="impact.html" class="hover:opacity-80">Impact</a>
|
| 150 |
+
<a href="leaderboard.html" class="hover:opacity-80">Leaderboard</a>
|
| 151 |
+
|
| 152 |
+
<a href="index.html" class="bg-white text-emerald-600 px-4 py-1 rounded-full font-semibold">
|
| 153 |
+
Logout
|
| 154 |
+
</a>
|
| 155 |
+
|
| 156 |
+
</div>
|
| 157 |
+
|
| 158 |
+
</nav>
|
| 159 |
|
| 160 |
<script>
|
| 161 |
|
|
|
|
| 281 |
location.href="confirmation.html";
|
| 282 |
}
|
| 283 |
|
| 284 |
+
</script>
|
| 285 |
+
<div id="footer"></div>
|
| 286 |
+
|
| 287 |
+
<script>
|
| 288 |
+
fetch("footer.html")
|
| 289 |
+
.then(res => res.text())
|
| 290 |
+
.then(data => {
|
| 291 |
+
document.getElementById("footer").innerHTML = data;
|
| 292 |
+
});
|
| 293 |
</script>
|
| 294 |
|
| 295 |
</body>
|