bigly-chat/views/header_block.ejs

11 lines
348 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' ) { %>
<div class="button"><a href="/client/login">Login</a></div>
<% } else { %>
<a href="/client/user?user=<%= username %>">
<%= username %>
</a>
<% } %>
2024-11-25 14:12:43 -05:00
</div>