X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/c031ceb3408d1a9d6564fd6c3fdfbf0bd05bcba5..6ab52cd256200176b5d37cbf8b2d65b89e61762c:/app/views/user/new.html.erb diff --git a/app/views/user/new.html.erb b/app/views/user/new.html.erb index dbb5d6047..51808562f 100644 --- a/app/views/user/new.html.erb +++ b/app/views/user/new.html.erb @@ -1,73 +1,70 @@ <% content_for :heading do %>

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

+
+
<% end %> -<%= form_for :user, :url => { :action => 'create' }, :html => { :class => 'signup-form-wrapper fillL col6 pad2' } do %> +<%= form_for :user, :url => { :action => 'create' }, :html => { :class => 'signup-form-wrapper standard-form fillL col6 pad2' } do %> <%= error_messages_for 'user' %> <%= 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 }) %> +
+
+ + <%= email_field(:user, :email_confirmation, { :tabindex => 2 }) %> +
<%= 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 }) %> +
+ <%= 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 }) %> +
+
- <%= 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 %>
@@ -79,27 +76,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();