Skip to content

Instantly share code, notes, and snippets.

@LaurMo
Created September 11, 2013 16:57
Show Gist options
  • Save LaurMo/6526547 to your computer and use it in GitHub Desktop.
Save LaurMo/6526547 to your computer and use it in GitHub Desktop.
is a user is signed in
<% if user_signed_in? %>
Logged in as <%= current_user.username %>
<%= link_to 'Edit profile', edit_user_registration_path %> |
<%= link_to "Logout", destroy_user_session_path, method: :delete %>
<%= link_to 'View Your Collections', collections_path %>
<% link_to 'New Collection', new_collection_path %>
<% else %>
<%= link_to "Sign up", new_user_registration_path %> |
<%= link_to "Login", new_user_session_path %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment