<%# # @file # /users/:id/edit # User edit form #%> <% content_for :title, @user.name + "'s Settings | Metamaps" %>
<%= formula_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.input :email %>
<%= form.label :password, "Current Password:", :class => "firstFieldText" %> <%= form.input :password, :autocomplete => :off%>
<%= form.label :password, "New Password:", :class => "firstFieldText" %> <%= form.input :password, :autocomplete => :off%>
<%= form.label :password, "Confirm New Password:", :class => "firstFieldText" %> <%= form.input :password, :autocomplete => :off%>
<%= form.submit "Update", class: "update" %> <% end %>