%#
# @file
# /users/:id/edit
# User edit form
#%>
<% content_for :title, @user.name + "'s Settings | Metamaps" %>
<%= form_for @user, url: user_url, :html =>{ :class => "edit_user centerGreyForm"} do |form| %>
Edit Account
<% if @user.image %><%= image_tag @user.image.url(:round), :size => "120x120" %><% end %>
<%= @user.name %>
<%= form.label :email, "Email:", :class => "firstFieldText" %>
<%= form.email_field :email %>
<%= form.label :password, "Current Password:", :class => "firstFieldText" %>
<%= form.password_field :password, :autocomplete => :off%>
<%= 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%>
<%= form.submit "Update", class: "update" %>
<% end %>