X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/d70fd8ab1a07d842603b820d8ce7d0e5be9f976d..ff73d1225554de6f6ec2aee7bcd9faa527c0d552:/app/views/user/new.html.erb
diff --git a/app/views/user/new.html.erb b/app/views/user/new.html.erb
index 104a88959..71d3e875b 100644
--- a/app/views/user/new.html.erb
+++ b/app/views/user/new.html.erb
@@ -1,12 +1,6 @@
-
<%= 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 %>
+<% content_for :heading do %>
+ <%= t 'user.new.heading' %>
+<% end %>
<%= t 'user.new.fill_form' %>
@@ -59,7 +53,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' %>
|
@@ -76,31 +70,33 @@
+$(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 -%>
+});
+