= form_for :user, :html => {:id => "combo_form"} do |f| %h2 = t("titles.adopt", :thing => t("defaults.thing").titleize) #common_fields = f.label "email", t("labels.email"), :id => "user_email_label" %em = image_tag "lock.svg", :class => "lock", :alt => t("captions.private"), :title => t("captions.private") = f.text_field "email", :value => params[:user] ? params[:user][:email] : nil = f.label "new" , radio_button_tag("user", "new", true).html_safe + t("labels.user_new") = f.label "existing", radio_button_tag("user", "existing").html_safe + t("labels.user_existing") #user_sign_up_fields = f.label "name", t("labels.name"), :id => "user_name_label" %em = t("captions.public") = f.text_field "name" = f.label "organization", t("labels.organization"), :id => "user_organization_label" %em = t("captions.public") = f.text_field "organization" = f.label "voice_number", t("labels.voice_number"), :id => "user_voice_number_label" %em = image_tag "lock.svg", :class => "lock", :alt => t("captions.private"), :title => t("captions.private") = f.text_field "voice_number" = f.label "sms_number", t("labels.sms_number"), :id => "user_sms_number_label" %em = image_tag "lock.svg", :class => "lock", :alt => t("captions.private"), :title => t("captions.private") = f.text_field "sms_number" = f.label "password_confirmation", t("labels.password_choose"), :id => "user_password_confirmation_label" %em = image_tag "lock.svg", :class => "lock", :alt => t("captions.private"), :title => t("captions.private") = f.password_field "password_confirmation" = f.submit t("buttons.sign_up") %p = t("defaults.tos", :tos => link_to(t("titles.tos"), tos_path, :id => "tos_link")).html_safe #user_sign_in_fields{:style => "display: none;"} = f.label "password", t("labels.password"), :id => "user_password_label" %em = image_tag "lock.svg", :class => "lock", :alt => t("captions.private"), :title => t("captions.private") = f.password_field "password" = f.label "remember_me", (f.check_box("remember_me", :checked => true).html_safe + t("labels.remember_me")), :id => "user_remember_me_label" = f.submit t("buttons.sign_in") %p = link_to t("links.forgot_password"), "#", :id => "user_forgot_password_link" #user_forgot_password_fields{:style => "display: none;"} = f.submit t("buttons.email_password") %p = link_to t("links.remembered_password"), "#", :id => "user_remembered_password_link"