akkounts/app/views/shared/_header_account.html.erb
Sebastian Kippe 814633034f
All checks were successful
continuous-integration/drone/push Build is passing
WIP Add Tailwind CSS
2021-02-09 02:05:31 +01:00

7 lines
267 B
Plaintext

<% if user_signed_in? %>
<p class="current-user mt-8">
Signed in as <strong class="text-white font-normal"><%= current_user.cn %>@kosmos.org</strong>.
<%= link_to "Log out", destroy_user_session_path, method: :delete, class: 'underline' %>
</p>
<% end %>