<div class="vp">
	<div class="s_title hh2">Password Managment</div>
	<%= form_for(resource, :as => resource_name, :url => users_passwd_path(resource_name), :html => { :method => :put, "form-type"=>"ajax_form" ,"callback-method"=>"passwordUpdate" }) do |f| %>
	<ul class="s_form">
		<li class="s_grid_row">
			<%= f.label :current_password, :class => 's_grid s_grid_4' %>
			<%= f.password_field :current_password, :class => 's_grid s_grid_8' %>
		</li>

		<li class="s_grid_row">
			<%= f.label :password, :class => 's_grid s_grid_4' %>
			<%= f.password_field :password, :class => 's_grid s_grid_8' %>
		</li>

		<li class="s_grid_row">
			<%= f.label :password_confirmation, :class => 's_grid s_grid_4' %>
			<%= f.password_field :password_confirmation, :class => 's_grid s_grid_8' %>
		</li>
	</ul>
	<div class="s_action"><%= f.submit "Update", :class => "setting_btn thmc1 thmtxt w1 hh1 hp" %></div>
	<% end %>
</div>