X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/eeb9866d50e35b8f8b75e59aed582caba533778f..16fef14b61f4cf5222484b7c315ed05c661cbcef:/app/views/user/new.html.erb diff --git a/app/views/user/new.html.erb b/app/views/user/new.html.erb index fcd775a48..7fd537d14 100644 --- a/app/views/user/new.html.erb +++ b/app/views/user/new.html.erb @@ -3,80 +3,80 @@ <% end %> <% content_for :heading do %> -

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

+

<%= t '.title' %>

<% end %> -<%= form_for :user, :url => { :action => 'create' }, :html => { :class => 'standard-form fillL col6 inner22' } 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? %>
- <%= 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') %> + <%= raw(t '.not displayed publicly') %>
- <%= 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' %> + <%= t '.display name description' %>
- <%= select(:user, :auth_provider, Auth::PROVIDERS, { :default => "", :tabindex => 4 }) %> - <%= text_field(:user, :auth_uid, { :tabindex => 5 }) %> - <%= error_message_on(:user, :auth_uid) %> + <%= 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.auth no password' %> + <%= t '.auth no password' %>
- <%= password_field(:user, :pass_crypt, { :tabindex => 6 }) %> - <%= 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 => 7 }) %> - <%= 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 external auth")), "#", :id => "auth_enable" %> + <%= link_to raw(t(".use external auth")), "#", :id => "auth_enable" %>
- <%= submit_tag t('user.new.continue'), :tabindex => 8 %> + <%= submit_tag t('.continue'), :tabindex => 8 %> <% end %>
-

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

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

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

+ <%= t '.about.html' %>