Sha256: d10f58254c7ed250ccd946a56069f8cdf086bbf4b46a6ac9abfe144dbe4b0921

Contents?: true

Size: 1004 Bytes

Versions: 1

Compression:

Stored size: 1004 Bytes

Contents

<%= devise_error_messages! %>
<div class="panel panel-default">
  <div class="panel-heading">
    <h4><%= t('.change_your_password', :default => 'Change your password') %></h4>
  </div>
  <div class="panel-body">
    <%= form_for(resource, :as => resource_name, :url => password_path(resource_name), :html => { :method => :put, role: "form" }) do |f| %>
      <%= f.hidden_field :reset_password_token %>

      <div class="form-group">
        <%= f.label :password, t('.new_password', :default => 'New password') %>
        <%= f.password_field :password, class: "form-control"  %>
      </div>

      <div class="form-group">
        <%= f.label :password_confirmation, t('.confirm_new_password', :default => 'Confirm new password') %>
        <%= f.password_field :password_confirmation, class: "form-control"  %>
      </div>

      <%= f.submit t('.change_my_password', :default => 'Change my password'), class: "btn btn-primary" %>
    <% end %>
  </div>
</div>
<%= render "devise/shared/links" %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
devise-bootstrap-views-0.0.1 app/views/devise/passwords/edit.html.erb