All checks were successful
continuous-integration/drone/push Build is passing
11 lines
369 B
Plaintext
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 %>
|