diff --git a/app/views/forms/_combo_form.html.erb b/app/views/forms/_combo_form.html.erb index 33150e1..ccfe922 100644 --- a/app/views/forms/_combo_form.html.erb +++ b/app/views/forms/_combo_form.html.erb @@ -6,7 +6,7 @@ <%= f.label "new" , radio_button_tag("user", "new", true, :tabindex => 2).html_safe + "I haven't signed up yet" %>
<%= f.label "existing", radio_button_tag("user", "existing").html_safe + "I've already signed up" %>
-
+
<%= f.label "name", "Name", :id => "user_name_label" %> <%= f.text_field "name", :tabindex => 3 %> <%= f.label "organization", "Organization", :id => "user_organization_label" %> @@ -17,14 +17,14 @@ <%= f.text_field "sms_number", :tabindex => 6 %> <%= f.label "password_confirmation", "Choose a password", :id => "user_password_confirmation_label" %> <%= f.password_field "password_confirmation", :tabindex => 7 %> - <%= f.submit "Sign up", :tabindex => 8, :id => "sign_up_submit" %> + <%= f.submit "Sign up", :tabindex => 8, :id => "user_sign_up_submit" %>

By signing up, you agree to the <%= link_to "Terms of Service", "#", :tabindex => 9 %>.

-