orbit-basic/app/views/devise/registrations/edit.html.erb

19 lines
726 B
Plaintext
Raw Normal View History

2012-12-05 08:10:15 +00:00
<div class="vp">
2013-03-05 01:39:01 +00:00
<div class="s_title hh2">Password Managment</div>
2012-12-05 08:10:15 +00:00
<%= 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 %>
2012-12-05 08:10:15 +00:00
<%= f.password_field :current_password %></li>
2012-02-22 06:43:24 +00:00
<li class="s_grid_row"><%= f.label :password %>
2012-12-05 08:10:15 +00:00
<%= f.password_field :password %></li>
2012-02-22 06:43:24 +00:00
<li class="s_grid_row"><%= f.label :password_confirmation %>
2012-12-05 08:10:15 +00:00
<%= f.password_field :password_confirmation %></li>
</ul>
2013-03-05 01:39:01 +00:00
<div class="s_action"><%= f.submit "Update", :class => "setting_btn thmc1 thmtxt w1 hh1 hp" %></div>
2012-12-05 08:10:15 +00:00
<% end %>
</div>
2012-02-22 06:43:24 +00:00