bigly-chat/views/header_block.ejs

14 lines
398 B
Text
Raw Normal View History

2024-11-25 14:12:43 -05:00
<div class='header'>
2024-11-25 14:12:43 -05:00
<img src='/static/img/logo.svg'>
2024-11-25 14:12:43 -05:00
<a href='/'>BiglyChat</a>
2024-11-25 14:12:43 -05:00
<%if (username=='!nobody' ) { %>
2024-11-25 14:12:43 -05:00
<a href="/client/login">Login</a>
2024-11-25 14:12:43 -05:00
<% } else { %>
2024-11-25 14:12:43 -05:00
<a href="/client/user?id=<%= username %>">
2024-11-25 14:12:43 -05:00
<%= username %>
</a>
2024-11-25 14:12:43 -05:00
<a href="/client/upload">
Upload
</a>
2024-11-25 14:12:43 -05:00
<% } %>
2024-11-25 14:12:43 -05:00
</div>