X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/13289d404188bd397ee72852f66c415a2bb87066..55f0402471729354c31d85635e1c740599b1a0ad:/app/views/user/new.html.erb?ds=sidebyside
diff --git a/app/views/user/new.html.erb b/app/views/user/new.html.erb
index 2bf6f5281..f45072a92 100644
--- a/app/views/user/new.html.erb
+++ b/app/views/user/new.html.erb
@@ -1,13 +1,5 @@
<%= t 'user.new.heading' %>
-<% if Acl.address(request.remote_ip).where(:k => "no_account_creation").exists? %>
-
-<%= t 'user.new.no_auto_account_create' %>
-
-<%= t 'user.new.contact_webmaster' %>
-
-<% else %>
-
<%= t 'user.new.fill_form' %>
<%= error_messages_for 'user' %>
@@ -59,7 +51,7 @@
|
- <%= link_to_function(raw(t('user.new.use openid', :logo => openid_logo)), "enableOpenID()") %>
+ <%= link_to raw(t("user.new.use openid", :logo => openid_logo)), "#", :id => "openid_enable" %>
<%= t 'user.new.openid no password' %>
|
@@ -96,11 +88,13 @@ function disableOpenID()
$("#openid_url").prop("disabled", true);
}
-<% if params[:openid] or (@user and @user.openid_url and not @user.openid_url.empty?) -%>
-enableOpenID();
-<% else -%>
-disableOpenID();
-<% end -%>
-
+$(document).ready(function () {
+ $("#openid_enable").click(enableOpenID);
-<% end %>
+ <% if params[:openid] or (@user and @user.openid_url and not @user.openid_url.empty?) -%>
+ enableOpenID();
+ <% else -%>
+ disableOpenID();
+ <% end -%>
+});
+