X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/10b71ba2f66c5bd9c71ab7385da3584ae741ee6e..77303f1e5ac466d59129f6cf083e5f6d6ac09288:/app/views/user/new.rhtml diff --git a/app/views/user/new.rhtml b/app/views/user/new.rhtml index d0b5a9667..a19582fa4 100644 --- a/app/views/user/new.rhtml +++ b/app/views/user/new.rhtml @@ -1,4 +1,4 @@ -

Create a user account

+

Create a User Account

<% if Acl.find_by_address(request.remote_ip, :conditions => {:k => "no_account_creation"}) %> @@ -27,17 +27,19 @@ <%= error_messages_for 'user' %> <% form_tag :action => 'save' do %> - - - - - - +
Email Address<%= text_field('user', 'email',{:size => 50, :maxlength => 255}) %>
Confirm Email Address<%= text_field('user', 'email_confirmation',{:size => 50, :maxlength => 255}) %>
Display Name<%= text_field('user', 'display_name',{:size => 50, :maxlength => 255}) %>
Password<%= password_field('user', 'pass_crypt',{:size => 50, :maxlength => 255}) %>
Confirm Password<%= password_field('user', 'pass_crypt_confirmation',{:size => 50, :maxlength => 255}) %>
+ + + + + + + + + + +
Email Address : <%= text_field('user', 'email',{:size => 50, :maxlength => 255, :tabindex => 1}) %>
Confirm Email Address : <%= text_field('user', 'email_confirmation',{:size => 50, :maxlength => 255, :tabindex => 2}) %>
Not displayed publicly (see privacy policy)
 
Display Name : <%= text_field('user', 'display_name',{:size => 30, :maxlength => 255, :tabindex => 3}) %>
 
Password : <%= password_field('user', 'pass_crypt',{:size => 30, :maxlength => 255, :tabindex => 4}) %>
Confirm Password : <%= password_field('user', 'pass_crypt_confirmation',{:size => 30, :maxlength => 255, :tabindex => 5}) %>
 
-
-
- - <% end %> <% end %>