X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/c382f33e1c2e17ba00898dede1ff9c3605818f16..4cc400de436a5dc33b66bc735b5fb6257e066a5a:/app/views/user/account.rhtml diff --git a/app/views/user/account.rhtml b/app/views/user/account.rhtml index c26089671..76b4fbb34 100644 --- a/app/views/user/account.rhtml +++ b/app/views/user/account.rhtml @@ -1,14 +1,32 @@

User details

- - - - - -
id<%= @user.id %>
email<%= @user.email %>
display name<%= @user.display_name %> (<%= link_to 'change...', :controller => 'user', :action => 'rename' %>)
account created<%= @user.creation_time %>
+<%= error_messages_for 'user' %> +<% form_for :user, @user do |f| %> + + + + + + + + -

Privacy

+ class="nohome" <%end%> > + + +
Email<%= @user.email %>
Mapper since<%= @user.creation_time %> (<%= time_ago_in_words(@user.creation_time) %> ago)
Display Name<%= f.text_field :display_name %>
Password<%= f.password_field :pass_crypt, {:value => '', :size => 50, :maxlength => 255} %>
Confirm Password<%= f.password_field :pass_crypt_confirmation, {:value => '', :size => 50, :maxlength => 255} %>
Description<%= f.text_area :description, :class => "editDescription" %>
Your homeYou have not entered your home location.Latitude: <%= f.text_field :home_lat, :size => 20, :id => "home_lat" %> Longitude <%= f.text_field :home_lon, :size => 20, :id => "home_lon" %>
+

Update home location when I click on the map? checked="checked" <% end %> id="updatehome" />

+
+
+<%= submit_tag 'Save Changes' %> +<% end %> -<%= start_form_tag :controller => 'user', :action => 'public'%> -<%= submit_tag 'Make all my edits public, forever' %> -<%= end_form_tag %> +<%= render :partial => 'friend_map' %> +

Public editing

+<% if @user.data_public? %> + All your edits are public. +<% else %> + Currently your edits are anonymous and people can't send you messages or see your location. To show what you edited and allow people to contact you through the website, click the button below. You will need to do this if you want to use the online editor (find out why). This action cannot be reversed. +

+ <%= button_to "Make all my edits public, forever", :action => :go_public %> +<% end %>