<% provide(:page_name, 'register') %> <% provide(:title, 'Register') %> <% provide(:description, 'Sign up for your JamKazam account to play music with others online in real time and network with musicians.') %>
<%= 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 :password, "Choose a Password:" %> <%= f.password_field :password %>
<%= f.label :password_confirmation, "Verify Password:" %> <%= f.password_field :password_confirmation %>
<%= f.check_box :terms_of_service %> I have read and agree to the JamKazam <%= link_to "terms of service", corp_terms_path, :rel => "external" %> .
<% if Rails.application.config.recaptcha_enable %>
<% end %>

2
Select your subscription plan

<%= f.radio_button :desired_plan_code, '', :checked => true %>
<%= f.radio_button :desired_plan_code, 'jamsubsilver'%>
<%= f.radio_button :desired_plan_code, 'jamsubgold' %>
<%= f.radio_button :desired_plan_code, 'jamsubplatinum'%>
compare plans
New users have access to the Gold plan free for the first 30 days. The plan you select will take effect after the first 30-day trial period. Taxes apply to all non-free plans.
<%= f.submit "CREATE ACCOUNT", class: "button-orange disabled", id:"create-account-submit"%> <%= link_to "CANCEL", root_path, :class=>'button-grey' %>
<% end %>