This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
orbit-4-1/app/views/devise/menu/_login_items.html.erb

9 lines
214 B
Plaintext

<% if user_signed_in? %>
<div id="log_out">
<%= link_to('Logout', destroy_user_session_path) %>
</div>
<% else %>
<div id="log_in">
<%= link_to('Login', new_user_session_path) %>
</div>
<% end %>