Page MenuHomeGRNET

edit.html.erb
No OneTemporary

File Metadata

Created
Mon, Sep 7, 5:42 PM

edit.html.erb

<h2>Change your password</h2>
<%= bootstrap_form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put }) do |f| %>
<%= devise_error_messages! %>
<%= f.hidden_field :reset_password_token %>
<%= f.password_field :password, autofocus: true, autocomplete: "off", label: 'New password', help: "#{@minimum_password_length} characters minimum" %>
<%= f.password_field :password_confirmation, autocomplete: "off", label: 'Confirm new password' %>
<%= f.submit "Change my password", class: 'btn btn-primary' %>
<% end %>
<%= render "devise/shared/links" %>

Event Timeline