Files
openfoodnetwork/app/views/shop/checkout/_signup.html.haml
2014-02-13 16:14:11 +11:00

15 lines
640 B
Plaintext

= form_for Spree::User.new, :as => :spree_user, :url => spree.spree_user_registration_path(@spree_user) do |f|
%fieldset
%legend New to OFN?
%p
= f.label :email, t(:email)
= f.email_field :email, :class => 'title', :id => "signup_spree_user_email"
%p
= f.label :password, t(:password)
= f.password_field :password, :class => 'title', :id => "signup_spree_user_password"
%p
= f.label :password_confirmation, t(:confirm_password)
= f.password_field :password_confirmation, :class => 'title', :id => "signup_spree_user_password_confirmation"
= f.submit "Sign Up", :class => 'button'