vidpush/app/views/layouts/_header.html.erb

8 lines
237 B
Plaintext
Raw Normal View History

<% 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 %>
2014-04-22 19:49:34 +00:00
-----