Sha256: 971e16f2fada9fe99ab3f80144898c72aaf9604c4b4187ddc07f8b8b3ba0d5ff

Contents?: true

Size: 648 Bytes

Versions: 2

Compression:

Stored size: 648 Bytes

Contents

<div id="existing-customer">
  <table>
    <tr>
      <% if user.anonymous? %>
        <%= form_for(:user, :url => user_authentication_path(user), :html => { :method => :put }) do |f| %>
          <td><%= f.label :email, t("email") %></td>
          <td><%= f.text_field :email, :class => 'title', :value => (omniauth["extra"]["user_hash"]["email"] unless omniauth.nil? ) %></td>
          <td><%=submit_tag t("update") %></td>
        <% end %>
      <% else %>
      <td><%= t("email") %>:</td>
      <td>
        <%= user.email %>
      </td>
      <td><p><%= link_to t('edit'), edit_account_path %></p></td>
      <% end %>
    </tr>
  </table>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
spree_social-1.0.2 app/views/user_registrations/social_edit.html.erb
spree_social-1.0.1 app/views/user_registrations/social_edit.html.erb