<%# # @file # /users/:id/edit # User edit form #%> <% content_for :title, @user.name + "'s Settings | Metamaps" %> <% content_for :mobile_title, "Account Settings" %>
<%= form_for @user, url: user_url, :html =>{ :multipart => true, :class => "edit_user centerGreyForm"} do |form| %>

Edit Settings

<%= image_tag @user.image.url(:ninetysix), :size => "84x84" %>
  • Upload Photo <%= hidden_field_tag "remove_image", "0" %> <%= form.file_field :image %> <%= form.label :image %>
  • Remove
  • Cancel
<%= @user.name %>
<%= form.label :name, "Name:", class: 'firstFieldText' %> <%= form.text_field :name %>
<%= form.label :email, "Email:", class: 'firstFieldText' %> <%= form.email_field :email %>
<%= form.label :emails_allowed, class: 'firstFieldText' do %> <%= form.check_box :emails_allowed, class: 'inline' %> Send Metamaps notifications to my email. <% end %> <% if is_tester(@user) %> <%= fields_for :settings, @user.settings do |settings| %> <%= settings.label :follow_topic_on_created, class: 'firstFieldText' do %> <%= settings.check_box :follow_topic_on_created, class: 'inline' %> Auto-follow topics you create. <% end %> <%= settings.label :follow_topic_on_contributed, class: 'firstFieldText' do %> <%= settings.check_box :follow_topic_on_contributed, class: 'inline' %> Auto-follow topics you edit. <% end %> <%= settings.label :follow_map_on_created, class: 'firstFieldText' do %> <%= settings.check_box :follow_map_on_created, class: 'inline' %> Auto-follow maps you create. <% end %> <%= settings.label :follow_map_on_contributed, class: 'firstFieldText' do %> <%= settings.check_box :follow_map_on_contributed, class: 'inline' %> Auto-follow maps you edit. <% end %> <% end %> <% end %>
Change Password
<%= form.label :current_password, "Current Password:", :class => "firstFieldText" %> <%= password_field_tag :current_password, params[:current_password] %>
<%= form.label :password, "New Password:", :class => "firstFieldText" %> <%= form.password_field :password, :autocomplete => :off%>
<%= form.label :password_confirmation, "Confirm New Password:", :class => "firstFieldText" %> <%= form.password_field :password_confirmation, :autocomplete => :off%>
Oops, don't change password
<%= form.submit "Update", class: "update", onclick: "Metamaps.Account.showLoading()" %>
<% end %>