X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/58cd5bfb11bccb5e326847b218809be2c93a00d5..a24f52dec75007d05c5a4e2986dd82c4602af4ad:/app/views/user/new.html.erb diff --git a/app/views/user/new.html.erb b/app/views/user/new.html.erb index 82d1b5d9c..d1772f996 100644 --- a/app/views/user/new.html.erb +++ b/app/views/user/new.html.erb @@ -4,9 +4,7 @@
<% end %> -<%= form_for :user, :url => { :action => 'create' }, :html => { :class => 'signup-form-wrapper standard-form fillL col6 pad2' } do %> - <%= error_messages_for 'user' %> - +<%= form_for :user, :url => { :action => 'create' }, :html => { :class => 'standard-form fillL col6 inner22' } do %> <%= hidden_field_tag('referer', h(@referer)) unless @referer.nil? %>
@@ -15,14 +13,16 @@ <%= t 'user.new.email address' %> <%= email_field(:user, :email, { :tabindex => 1 }) %> + <%= error_message_on(:user, :email) %>
<%= email_field(:user, :email_confirmation, { :tabindex => 2 }) %> + <%= error_message_on(:user, :email_confirmation) %>
- <%= raw(t 'user.new.not displayed publicly') %> + <%= raw(t 'user.new.not displayed publicly') %>
@@ -31,6 +31,7 @@ <%= t 'user.new.display name' %> <%= text_field(:user, :display_name, { :tabindex => 3 }) %> + <%= error_message_on(:user, :display_name) %> <%= t 'user.new.display name description' %>
@@ -41,10 +42,9 @@ <%= raw t 'user.new.openid', :logo => openid_logo %> <%= url_field(:user, :openid_url, { :id => "openid_url", :tabindex => 4, :class => "openid_url" }) %> + <%= error_message_on(:user, :openid_url) %> - - <%= t 'user.new.openid no password' %> - + <%= t 'user.new.openid no password' %>
@@ -53,12 +53,14 @@ <%= t 'user.new.password' %> <%= password_field(:user, :pass_crypt, {:tabindex => 5 }) %> + <%= error_message_on(:user, :pass_crypt) %>
<%= password_field(:user, :pass_crypt_confirmation, { :tabindex => 6 }) %> + <%= error_message_on(:user, :pass_crypt_confirmation) %>
@@ -69,7 +71,7 @@ <%= submit_tag t('user.new.continue'), :tabindex => 6 %> <% end %> -
+

<%= t 'user.new.about.header' %>

<%= t 'user.new.about.html' %>
@@ -78,27 +80,21 @@ function enableOpenID() { $("#openid_prompt").hide(); - $("#openid_field").show(); - $("#openid_note").show(); - $("#openid_url").prop("disabled", false); } function disableOpenID() { $("#openid_prompt").show(); - $("#openid_field").hide(); - $("#openid_note").hide(); - $("#openid_url").prop("disabled", true); } $(document).ready(function () { $("#openid_enable").click(enableOpenID); - <% if params[:openid] or (@user and @user.openid_url and not @user.openid_url.empty?) -%> + <% if params[:openid] or (@user and @user.openid_url.present?) -%> enableOpenID(); <% else -%> disableOpenID();