<% title "Sign In", false %>

Sign In

<% if @authentications %> <% unless @authentications.empty? %>

You can sign in to this account using:

<% for authentication in @authentications %>
<%= image_tag "#{authentication.provider}_32.png", :size => "32x32" %>
<%= authentication.provider.titleize %>
<%= authentication.uid %>
<%= link_to "X", authentication, :confirm => 'Are you sure you want to remove this authentication option?', :method => :delete, :class => "remove" %>
<% end %>
<% end %>

Add another service to sign in with:

<% else %>

Sign in through one of these services:

<% end %> <%= image_tag "facebook_50.gif", :size => "50x50", :alt => "Facebook" %>
<% unless user_signed_in? %>

Don't use these services? <%= link_to "Sign up", new_user_registration_path %> or <%= link_to "sign in", new_user_session_path %> with a password.

<% end %>