Guest User

Untitled

a guest
Sep 20th, 2018
336
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. = form_for resource_name, :as => resource, :url => registration_path(resource_name), :html => {:id => 'promo-signup'} do |f|
  2. = f.text_field :email, :placeholder => "email"
  3. = f.text_field :first_name, :placeholder => "first name"
  4. = f.password_field :password, :placeholder => "password"
  5.  
  6. %br
  7. %button.signup Create Account
  8. %p.in-field
  9. = f.hidden_field :accept_terms, :id => 'accept_terms', :value => '1'
  10. - if session[:origin]
  11. = f.hidden_field :origin, :value => session[:origin]
  12. By clicking 'Create Account' you agree to our
  13. = link_to 'terms of use', terms_path(:m => 'true'), :class => 'iframe fancybox'
Add Comment
Please, Sign In to add comment