assignment 2

This commit is contained in:
SowinskiBraeden committed 2025-05-12 15:48:29 -07:00
1 parent 33e8ef230c
commit 942ad7add0
11 files changed
+199 -79

No files matched your search

+10
View File
@@ -1,2 +1,12 @@
<footer class="fixed bottom-0 w-full bg-gray-500 h-15 text-white flex flex-col justify-center">
<div class="flex flex-row justify-center">
<div class="w-full flex flex-row justify-center">
<div class="mr-20">Copyright 2025</div>
<div>Super duper cool app</div>
</div>
</div>
</footer>
</body>
</html>
+14
View File
@@ -8,3 +8,17 @@
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
</head>
<body class="bg-gray-700">
<nav class="w-full bg-gray-500 h-15 text-white flex flex-col justify-center">
<div class="flex flex-row justify-between px-10 lg:px-20">
<div class="w-full">
Super duper cool app!
</div>
<div class="flex flex-row justify-between">
<a class="mx-4 lg:mx-12" href="/">Home</a>
<% if (authenticated) { %>
<a href="/logout">Logout</a>
<% } %>
</div>
</div>
</nav>