This repository has been archived on 2025-03-12. You can view files and clone it, but cannot push or open issues or pull requests.
asklyphe-frontend/templates/ui/userbar.html

11 lines
366 B
HTML
Raw Permalink Normal View History

2025-03-07 17:13:57 -08:00
<div class="user-bar">
<span class="user-welcome">welcome {{ info.username }}!</span>
{%if info.administrator %}
<a class="button" href="/admin">admin</a>
{% endif %}
<a class="button" href="/user_settings">settings</a>
<form action="/logout" method="post">
<button type="submit" id="logout_button">logout</button>
</form>
</div>