Sha256: fb22e6123605207abcf152d6062a99e582a53d15fb4f819c313cf7465eb246fb
Contents?: true
Size: 1018 Bytes
Versions: 10
Compression:
Stored size: 1018 Bytes
Contents
<% @title = "Authentications" %> <div class="page-header"> <h1><%= @title %></h1> </div> <% 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", height: "32px" %> <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
10 entries across 10 versions & 1 rubygems