Sha256: a13a1098896b7dcd49880e41d449603c7e9a3c3afa11172e0979b1ef664b7c18

Contents?: true

Size: 766 Bytes

Versions: 3

Compression:

Stored size: 766 Bytes

Contents

<%= render "shared/error_messages", :target => @user %>
<h2><%= t("registration")%></h2>
<div id="registration">
  <div id="account">
    <%= render :file => 'users/new' %>
  </div>
  <% if Spree::Config[:allow_guest_checkout] %>
    <div id="guest_checkout">
      <%= render "shared/error_messages", :target => @order %>
      <h2><%= t(:guest_user_account) %></h2>
      <%= form_for @order, :url => update_checkout_registration_path, :html => { :method => :put, :id => "checkout_form_registration"} do |f| %>
        <p>
          <%= f.label :email, t("email") %><br />
          <%= f.text_field :email, :class => 'title'  %>
        </p>
        <p><%= submit_tag t("continue"), :class => 'button primary' %></p>
      <% end %>
    </div>
  <% end %>
</div>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
spree_auth-0.30.2 app/views/checkout/registration.html.erb
spree_auth-0.30.1 app/views/checkout/registration.html.erb
spree_auth-0.30.0 app/views/checkout/registration.html.erb