Skip to content

Instantly share code, notes, and snippets.

@monkbroc
Created February 18, 2015 17:44
Show Gist options
  • Select an option

  • Save monkbroc/aa80a577bb14c1b726f0 to your computer and use it in GitHub Desktop.

Select an option

Save monkbroc/aa80a577bb14c1b726f0 to your computer and use it in GitHub Desktop.
OmniAuth sign in buttons
<ul class="nav">
<% if user_signed_in? -%>
<li><%= link_to 'Sign out', destroy_user_session_path, :method => :delete %></li>
<% else -%>
<li><%= link_to 'Sign in', new_user_session_path %></li>
<% end -%>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment