Sha256: f904b94a9b34aa22dc9a63b044cc1f61038d75d2654c77c4e993768609f5204d
Contents?: true
Size: 1.01 KB
Versions: 2
Compression:
Stored size: 1.01 KB
Contents
<!-- authentications/index.html.erb --> <% @title = "Authentications" %> <h1><%= @title %></h1> <% if @authentications %> <% unless @authentications.empty? %> <p><strong>You can sign in to this account using:</strong></p> <div class="authentications"> <% for authentication in @authentications %> <div class="authentication"> <%= image_tag "contour/#{authentication.provider}_32.png", :size => "32x32" %> <div class="provider"><%= authentication.provider.titleize %></div> <div class="uid"><%= authentication.uid %></div> <%= link_to "X", authentication, :confirm => 'Are you sure you want to remove this authentication option?', :method => :delete, :class => "remove" %> </div> <% end %> <div style="clear:both"></div> </div> <% end %> <p><strong>Add another service to sign in with:</strong></p> <% else %> <p><strong>Sign in through one of these services:</strong></p> <% end %> <%= render :partial => 'contour/authentications/index' %>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
contour-0.4.0 | app/views/contour/authentications/index.html.erb |
contour-0.3.2 | app/views/contour/authentications/index.html.erb |