<% provide(:title, 'Register') %>

Create a JamKazam account

<%= form_for(@user, :url => @signup_postback, :method => :post) do |f| %>
Register as a: <%= f.radio_button :musician, true, :class => "register-as register-musician" %> Musician <%= f.radio_button :musician, false, :class => "register-as register-fan" %> Fan
<%= f.label :first_name, "First Name:" %> <%= f.text_field :first_name %>
<%= f.label :last_name, "Last Name:" %> <%= f.text_field :last_name %>

<%= f.label :country, "Country:" %>

<%= f.label :state, "State/Province:" %>
<%= f.label :state, "City:" %>

<%= f.label :password, "Choose a Password:" %> <%= f.password_field :password %>
<%= f.label :password_confirmation, "Verify Password:" %> <%= f.password_field :password_confirmation %>


<% Instrument.standard_list.each do |instrument| %> <% end %>
_checkbox" name="jam_ruby_user[instruments][<%= instrument.id %>][selected]" type="checkbox"/><%= instrument.description %>
I have read and agree to the JamKazam <%= link_to "terms of service", corp_terms_path, :rel => "external" %> .
<% if Rails.application.config.recaptcha_enable %> <%= recaptcha_tags %> <% end %>
<%= link_to "CANCEL", root_path, :class=>'button-grey left' %> <%= f.submit "CREATE ACCOUNT", class: "right button-orange" %>


<% end %>