<h1><%= t 'user.new.heading' %></h1>
-<% if Acl.address(request.remote_ip).where(:k => "no_account_creation").exists? %>
-
-<p><%= t 'user.new.no_auto_account_create' %></p>
-
-<p><%= t 'user.new.contact_webmaster' %></p>
-
-<% else %>
-
<p><%= t 'user.new.fill_form' %></p>
<%= error_messages_for 'user' %>
<table id="signupForm">
<tr>
<td class="fieldName"><%= t 'user.new.email address' %></td>
- <td><%= text_field(:user, :email, { :size => 50, :maxlength => 255, :tabindex => 1 }) %></td>
+ <td><%= email_field(:user, :email, { :size => 50, :maxlength => 255, :tabindex => 1 }) %></td>
</tr>
<tr>
<td class="fieldName"><%= t 'user.new.confirm email address' %></td>
- <td><%= text_field(:user, :email_confirmation, { :size => 50, :maxlength => 255, :tabindex => 2 }) %></td>
+ <td><%= email_field(:user, :email_confirmation, { :size => 50, :maxlength => 255, :tabindex => 2 }) %></td>
</tr>
<tr>
<td></td>
<tr id="openid_field">
<td class="fieldName"><%= raw t 'user.new.openid', :logo => openid_logo %></td>
- <td><%= text_field(:user, :openid_url, { :id => "openid_url", :size => 50, :maxlength => 255, :tabindex => 4, :class => "openid_url" }) %></td>
+ <td><%= url_field(:user, :openid_url, { :id => "openid_url", :size => 50, :maxlength => 255, :tabindex => 4, :class => "openid_url" }) %></td>
</tr>
<tr><td colspan="2"> <!--vertical spacer--></td></tr>
<script type="text/javascript">
function enableOpenID()
{
- $("openid_prompt").hide();
+ $("#openid_prompt").hide();
- $("openid_spacer").show();
- $("openid_field").show();
- $("openid_note").show();
+ $("#openid_spacer").show();
+ $("#openid_field").show();
+ $("#openid_note").show();
- $("openid_url").disabled = false;
+ $("#openid_url").prop("disabled", false);
}
function disableOpenID()
{
- $("openid_prompt").show();
+ $("#openid_prompt").show();
- $("openid_spacer").hide();
- $("openid_field").hide();
- $("openid_note").hide();
+ $("#openid_spacer").hide();
+ $("#openid_field").hide();
+ $("#openid_note").hide();
- $("openid_url").disabled = true;
+ $("#openid_url").prop("disabled", true);
}
<% if params[:openid] or (@user and @user.openid_url and not @user.openid_url.empty?) -%>
disableOpenID();
<% end -%>
</script>
-
-<% end %>