- <%= link_to raw(t("user.new.use openid", :logo => openid_logo)), "#", :id => "openid_enable" %>
+
- <%= submit_tag t('user.new.continue'), :tabindex => 6 %>
+
+
+
+
+
+
+
+ <%= link_to raw(t("user.new.use openid", :logo => openid_logo)), "#", :id => "openid_enable" %>
+
+ <%= submit_tag t('user.new.continue'), :tabindex => 6 %>
<% end %>
diff --git a/test/functional/user_controller_test.rb b/test/functional/user_controller_test.rb
index 52a0e0b5c..6ae27c6eb 100644
--- a/test/functional/user_controller_test.rb
+++ b/test/functional/user_controller_test.rb
@@ -260,7 +260,7 @@ class UserControllerTest < ActionController::TestCase
assert_response :success
assert_template 'new'
assert_select "div#errorExplanation"
- assert_select "div#signupForm > fieldset > div.form-row > div.field_with_errors > input#user_email"
+ assert_select "form > fieldset > div.form-row > div.field_with_errors > input#user_email"
end
def test_user_create_submit_duplicate_email_uppercase
@@ -280,7 +280,7 @@ class UserControllerTest < ActionController::TestCase
assert_response :success
assert_template 'new'
assert_select "div#errorExplanation"
- assert_select "div#signupForm > fieldset > div.form-row > div.field_with_errors > input#user_email"
+ assert_select "form > fieldset > div.form-row > div.field_with_errors > input#user_email"
end
def test_user_create_submit_duplicate_name
@@ -300,7 +300,7 @@ class UserControllerTest < ActionController::TestCase
assert_response :success
assert_template 'new'
assert_select "div#errorExplanation"
- assert_select "div#signupForm > fieldset > div.form-row > div.field_with_errors > input#user_display_name"
+ assert_select "form > fieldset > div.form-row > div.field_with_errors > input#user_display_name"
end
def test_user_create_submit_duplicate_name_uppercase
@@ -320,7 +320,7 @@ class UserControllerTest < ActionController::TestCase
assert_response :success
assert_template 'new'
assert_select "div#errorExplanation"
- assert_select "div#signupForm > fieldset > div.form-row > div.field_with_errors > input#user_display_name"
+ assert_select "form > fieldset > div.form-row > div.field_with_errors > input#user_display_name"
end
def test_user_terms_new_user
diff --git a/test/integration/user_creation_test.rb b/test/integration/user_creation_test.rb
index f595ee73d..9945bd886 100644
--- a/test/integration/user_creation_test.rb
+++ b/test/integration/user_creation_test.rb
@@ -30,7 +30,7 @@ class UserCreationTest < ActionController::IntegrationTest
assert_template 'user/new'
assert_equal response.headers['Content-Language'][0..1], localer.to_s[0..1] unless localer == :root
assert_select "div#errorExplanation"
- assert_select "div#signupForm > fieldset > div.form-row > div.field_with_errors > input#user_email"
+ assert_select "form > fieldset > div.form-row > div.field_with_errors > input#user_email"
assert_no_missing_translations
end
end
@@ -49,7 +49,7 @@ class UserCreationTest < ActionController::IntegrationTest
assert_response :success
assert_template 'user/new'
assert_select "div#errorExplanation"
- assert_select "div#signupForm > fieldset > div.form-row > div.field_with_errors > input#user_display_name"
+ assert_select "form > fieldset > div.form-row > div.field_with_errors > input#user_display_name"
assert_no_missing_translations
end
end