23 lines
621 B
Plaintext
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") %>
|
|
|