X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/446837c3511bf76f11b0d1e6d5a3ff79b69b0d70..HEAD:/app/views/accounts/edit.html.erb
diff --git a/app/views/accounts/edit.html.erb b/app/views/accounts/edit.html.erb
deleted file mode 100644
index 0dcab17b0..000000000
--- a/app/views/accounts/edit.html.erb
+++ /dev/null
@@ -1,65 +0,0 @@
-<% content_for :head do %>
- <%= javascript_include_tag "user" %>
-<% end %>
-
-<% content_for :heading do %>
-
<%= t ".my settings" %>
-<% end %>
-
-<%= render :partial => "settings_menu" %>
-
-<%= bootstrap_form_for current_user, :url => { :action => :update }, :html => { :multipart => true, :id => "accountForm", :autocomplete => :off } do |f| %>
-
- <%= f.text_field :display_name %>
- <%= f.email_field :email, :disabled => true, :label => t(".current email address") %>
- <%= f.email_field :new_email, :autocomplete => "email" %>
- <%= f.password_field :pass_crypt, :value => "", :autocomplete => "new-password" %>
- <%= f.password_field :pass_crypt_confirmation, :value => "", :autocomplete => "new-password" %>
-
-
-
-
-
-
-
- <%= f.primary t(".save changes button") %>
-<% end %>
-
-<% unless current_user.data_public? %>
-
-<%= t ".public editing note.heading" %>
-<%= t ".public editing note.html" %>
- <%= button_to t(".make edits public button"), user_go_public_path %>
-<% end %>