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

10 lines
366 B
HTML

<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>