vidpush/app/views/layouts/_header.html.erb
2014-04-22 15:49:34 -04:00

8 lines
237 B
Plaintext

<% if user_signed_in? %>
<%= link_to "Profile", edit_user_registration_path %>
<%= link_to "Logout", destroy_user_session_path, :method => :delete %>
<% else %>
<%= link_to "Sign in", new_user_session_path %>
<% end %>
-----