Files
comp2537-assignment2/views/members.ejs
T
2025-05-11 21:24:43 -07:00

12 lines
328 B
Plaintext

<%- include("./partials/header") %>
<h3>Hello <%= username %></h3>
<figure>
<img style="width: 400pt;" src="/static/images/<%= name %>.png">
<figcaption><%= name %></figcaption>
</figure>
<br>
<a style="background-color: grey; padding: 6px; margin-top: 12pt;" href="/logout">Logout</a>
<%- include("./partials/footer") %>