Sha256: ad3967181e4035940320f18979078ffcd798e5ec1a976f465a112b0fe47336be

Contents?: true

Size: 983 Bytes

Versions: 11

Compression:

Stored size: 983 Bytes

Contents

<% @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", 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

11 entries across 11 versions & 1 rubygems

Version Path
contour-1.0.0.beta6 app/views/contour/authentications/index.html.erb
contour-1.0.0.beta5 app/views/contour/authentications/index.html.erb
contour-1.0.0.beta4 app/views/contour/authentications/index.html.erb
contour-1.0.0.beta3 app/views/contour/authentications/index.html.erb
contour-1.0.0.beta2 app/views/contour/authentications/index.html.erb
contour-1.0.0.beta app/views/contour/authentications/index.html.erb
contour-0.10.2 app/views/contour/authentications/index.html.erb
contour-0.10.1 app/views/contour/authentications/index.html.erb
contour-0.10.0 app/views/contour/authentications/index.html.erb
contour-0.9.4 app/views/contour/authentications/index.html.erb
contour-0.9.3 app/views/contour/authentications/index.html.erb