bigly-chat/views/header_block.ejs
2024-11-25 14:12:43 -05: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>