bigly-chat/views/header_block.ejs
2024-09-19 18:38:24 -04:00

14 lines
No EOL
398 B
Text

<div class='header'>
<img src='/static/img/logo.svg'>
<a href='/'>BiglyChat</a>
<%if (username=='!nobody' ) { %>
<a href="/client/login">Login</a>
<% } else { %>
<a href="/client/user?id=<%= username %>">
<%= username %>
</a>
<a href="/client/upload">
Upload
</a>
<% } %>
</div>