Files
comp2537-assignment2/views/admin.ejs
T
2025-05-12 15:55:01 -07:00

23 lines
621 B
Plaintext

<%- include("./partials/header") %>
<div class="m-12 flex flex-row justify-center">
<div>
<div class="flex flex-row justify-between w-sm">
<h1 class="text-white font-bold text-xl">Welcome <%= user.name %></h1>
<a class="w-20 text-center py-1 bg-yellow-400 rounded-md font-semibold" href="/logout">Logout</a>
</div>
<br>
<h1 class="text-white text-lg mb-2">Users</h1>
<div class="flex flex-col justify-between">
<% users.forEach((u) => { %>
<%- include("./partials/user") %>
<% }) %>
</div>
</div>
</div>
<%- include("./partials/footer") %>