X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/9c2de4039c3053c35e76f596faa95557dc237c74..ae0177fbe61d7d02e3c6b441bd395fff6fd96a18:/app/views/user/account.html.erb
diff --git a/app/views/user/account.html.erb b/app/views/user/account.html.erb
index 7047b5b82..0a2f056c2 100644
--- a/app/views/user/account.html.erb
+++ b/app/views/user/account.html.erb
@@ -1,134 +1,178 @@
-
-
- <%= t 'user.new.display name' %> |
- <%= f.text_field :display_name %> |
-
+<%= form_for :user, :html => { :multipart => true, :id => 'accountForm', :class => 'standard-form', :autocomplete => :off } do |f| %>
+
-
- <%= t 'user.account.current email address' %> |
- <%= @user.email %> <%= t 'user.account.email never displayed publicly' %> |
-
+
-
- <%= t 'user.new.password' %> |
- <%= f.password_field :pass_crypt, {:value => '', :size => 30, :maxlength => 255, :autocomplete => :off} %> |
-
+
-
- <%= t 'user.account.public editing.heading' %> |
-
- <% if @user.data_public? %>
- <%= t 'user.account.public editing.enabled' %> (<%= t 'user.account.public editing.enabled link text' %>)
- <% else %>
- <%= t 'user.account.public editing.disabled' %> (<%= t 'user.account.public editing.disabled link text' %>)
- <% end %>
- |
-
+
-
- <%= t 'user.account.contributor terms.heading' %> |
-
- <% if @user.terms_agreed? %>
- <%= t 'user.account.contributor terms.agreed' %>
- (<%= t 'user.account.contributor terms.link text' %>)
-
- <% if @user.consider_pd? %>
- <%= t 'user.account.contributor terms.agreed_with_pd' %>
+ |
-
+
+
+
+ <%= f.select :preferred_editor, [[t("editor.default", :name => t("editor.#{DEFAULT_EDITOR}.name")), 'default']] + Editors::ALL_EDITORS.collect { |e| [t("editor.#{e}.description"), e] } %>
+
+
-
- <%= t 'user.account.profile description' %> |
- <%= f.text_area :description, :rows => '5', :cols => '60' %> |
-
+
-
-
- <%= t 'user.account.image' %>
- |
-
- <% if @user.image.nil? %>
- <%= hidden_field_tag "image_action", "new" %>
- <%= t 'user.account.new image' %> <%= file_column_field "user", "image" %> <%= t 'user.account.image size hint' %>
- <% else %>
-
-
- <%= image_tag url_for_file_column(@user, "image"), :class => "user_image" %> |
- <%= radio_button_tag "image_action", "keep", true %> |
- <%= t 'user.account.keep image' %> |
-
-
- <%= radio_button_tag "image_action", "delete" %> |
- <%= t 'user.account.delete image' %> |
-
-
- <%= radio_button_tag "image_action", "new" %> |
- <%= t 'user.account.replace image' %> <%= file_column_field "user", "image", :onchange => "$('image_action_new').checked = true" %> <%= t 'user.account.image size hint' %> |
-
-
- <% end %>
- |
-
+
-
- |
-
- <%= t 'user.account.update home location on click' %> checked="checked" <% end %> id="updatehome" />
-
- |
-
-
-
- |
- <%= submit_tag t('user.account.save changes button') %> |
-
-
+ <%= submit_tag t('user.account.save changes button') %>
<% end %>
-<%= render :partial => 'map' %>
-
<% unless @user.data_public? %>