X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/1ba4fdd3e1553c271b07c9692e185b00ce95a470..901de4a56a58b4967eec5f2a20e241e3d1c088e9:/app/views/user/new.html.erb diff --git a/app/views/user/new.html.erb b/app/views/user/new.html.erb index 1368dfe19..3c085c99e 100644 --- a/app/views/user/new.html.erb +++ b/app/views/user/new.html.erb @@ -1,77 +1,78 @@ <% content_for :heading do %>

<%= t 'user.new.title' %>

+
+
<% end %> -<%= form_for :user, :url => { :action => 'create' }, :html => { :class => 'col6 pad2' } do %> - <%= error_messages_for 'user' %> - +<%= form_for :user, :url => { :action => 'create' }, :html => { :class => 'standard-form fillL col6 pad2' } do %> <%= hidden_field_tag('referer', h(@referer)) unless @referer.nil? %> -
- -
-
- - <%= email_field(:user, :email, { :tabindex => 1 }) %> -
-
- - <%= email_field(:user, :email_confirmation, { :tabindex => 2 }) %> -
+
+
+ + <%= 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') %> -
- -
-
- - <%= text_field(:user, :display_name, { :tabindex => 3 }) %> -
- <%= t 'user.new.display name description' %> -
- -
-
- - <%= url_field(:user, :openid_url, { :id => "openid_url", :tabindex => 4, :class => "openid_url" }) %> -
- - <%= t 'user.new.openid no password' %> - -
- -
-
- - <%= password_field(:user, :pass_crypt, {:tabindex => 5 }) %> -
-
- - <%= password_field(:user, :pass_crypt_confirmation, { :tabindex => 6 }) %> -
-
- -
- <%= link_to raw(t("user.new.use openid", :logo => openid_logo)), "#", :id => "openid_enable" %> +
+ +
+
+ + <%= text_field(:user, :display_name, { :tabindex => 3 }) %> + <%= error_message_on(:user, :display_name) %>
+ <%= t 'user.new.display name description' %> +
+ +
+
+ + <%= 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' %> +
+ +
+
+ + <%= 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) %> +
+
- <%= 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 %> -
-

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

+
+

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

<%= t 'user.new.about.html' %>
@@ -79,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();