X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/c5fc21e6a6615646b3fa443b6fd12a80b4fef331..a70898be6dde1e9e9f61f90f8dc9b2c18a6f9287:/app/views/user/new.html.erb diff --git a/app/views/user/new.html.erb b/app/views/user/new.html.erb index 6c89a7830..5a207060e 100644 --- a/app/views/user/new.html.erb +++ b/app/views/user/new.html.erb @@ -1,10 +1,14 @@ +<% content_for :head do %> + <%= javascript_include_tag "user" %> +<% end %> + <% content_for :heading do %>

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

<% end %> -<%= form_for :user, :url => { :action => 'create' }, :html => { :class => 'signup-form-wrapper standard-form fillL col6 pad2' } do %> +<%= form_for current_user, :url => { :action => 'create' }, :html => { :class => 'standard-form fillL col6 inner22' } do |f| %> <%= hidden_field_tag('referer', h(@referer)) unless @referer.nil? %>
@@ -12,15 +16,15 @@ - <%= email_field(:user, :email, { :tabindex => 1 }) %> - <%= error_message_on(:user, :email) %> + <%= f.email_field(:email, { :tabindex => 1 }) %> + <%= f.error_message_on(:email) %>
- <%= email_field(:user, :email_confirmation, { :tabindex => 2 }) %> - <%= error_message_on(:user, :email_confirmation) %> + <%= f.email_field(:email_confirmation, { :tabindex => 2 }) %> + <%= f.error_message_on(:email_confirmation) %>
<%= raw(t 'user.new.not displayed publicly') %>
@@ -30,21 +34,22 @@ - <%= text_field(:user, :display_name, { :tabindex => 3 }) %> - <%= error_message_on(:user, :display_name) %> + <%= f.text_field(:display_name, { :tabindex => 3 }) %> + <%= f.error_message_on(: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) %> + <%= f.select(:auth_provider, Auth::PROVIDERS, { :default => "", :tabindex => 4 }) %> + <%= f.text_field(:auth_uid, { :tabindex => 5 }) %> + <%= f.error_message_on(:auth_uid) %>
- <%= t 'user.new.openid no password' %> + <%= t 'user.new.auth no password' %>
@@ -52,52 +57,26 @@ - <%= password_field(:user, :pass_crypt, {:tabindex => 5 }) %> - <%= error_message_on(:user, :pass_crypt) %> + <%= f.password_field(:pass_crypt, { :tabindex => 6 }) %> + <%= f.error_message_on(:pass_crypt) %>
- <%= password_field(:user, :pass_crypt_confirmation, { :tabindex => 6 }) %> - <%= error_message_on(:user, :pass_crypt_confirmation) %> + <%= f.password_field(:pass_crypt_confirmation, { :tabindex => 7 }) %> + <%= f.error_message_on(:pass_crypt_confirmation) %>
-
- <%= link_to raw(t("user.new.use openid", :logo => openid_logo)), "#", :id => "openid_enable" %> +
+ <%= link_to raw(t("user.new.use external auth")), "#", :id => "auth_enable" %>
- <%= submit_tag t('user.new.continue'), :tabindex => 6 %> + <%= submit_tag t('user.new.continue'), :tabindex => 8 %> <% end %> -
+

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

<%= t 'user.new.about.html' %>
- -