akkounts/app/views/shared/_header_account.html.erb
Sebastian Kippe 4f2b35ccb9
All checks were successful
continuous-integration/drone/push Build is passing
WIP New app layout
2022-02-19 22:46:12 -06:00

11 lines
369 B
Plaintext

<% if user_signed_in? %>
<div class="flex items-baseline space-x-4 text-gray-200/80 text-sm font-medium">
<span>
Signed in as <strong class="text-white font-normal"><%= current_user.cn %>@kosmos.org</strong>
</span>
<span>
<%= link_to "Log out", destroy_user_session_path, class: 'underline hover:text-white' %>
</span>
</div>
<% end %>