Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <%= form_for(@user, :url => { :action => "update_password", :controller =>"users", method: "patch" }) do |f| %>
  2. <div class="field">
  3. <%= f.label :password, "Password" %><br />
  4. <%= f.password_field :password, :autocomplete => "off" %>
  5. </div>
  6. <div class="field">
  7. <%= f.label :password_confirmation %><br />
  8. <%= f.password_field :password_confirmation %>
  9. </div>
  10. <div class="action_container">
  11. <%= f.submit %>
  12. </div>
  13. <% end %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement