<% @title = "Authentications" %>

<%= @title %>

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

You can sign in to this account using:

<% for authentication in @authentications %>
<%= image_tag "contour/#{authentication.provider}_32.png", :height => "32px" %>
<%= 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 %> <%= render :partial => 'contour/authentications/index' %>