Sha256: f0fe463120f03ac81fa29e05d2f4533075721fcdbf63827adb519e00473c2256

Contents?: true

Size: 981 Bytes

Versions: 4

Compression:

Stored size: 981 Bytes

Contents

<%= render :partial => 'spree/shared/error_messages', :locals => { :target => @spree_user } %>
<div class="col-lg-6 offset-lg-3">
  <div class="card mb-3">
    <div class="card-header">
      <h3 class="card-title mb-0 h6"><%= Spree.t(:change_your_password) %></h3>
    </div>
    <div class="card-body">
      <%= form_for @spree_user, :as => :spree_user, :url => spree.update_password_path, :method => :put do |f| %>
        <div class="form-group">
          <%= f.label :password, Spree.t(:password) %>
          <%= f.password_field :password, :class => "form-control" %>
        </div>
        <div class="form-group">
          <%= f.label :password_confirmation, Spree.t(:confirm_password) %>
          <%= f.password_field :password_confirmation, :class => "form-control" %>
        </div>
        <%= f.hidden_field :reset_password_token %>
        <%= f.submit Spree.t(:update), :class => 'btn btn-lg btn-success btn-block' %>
      <% end %>
    </div>
  </div>
</div>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
spree_auth_devise-4.0.1 app/views/spree/user_passwords/edit.html.erb
spree_auth_devise-4.0.0 app/views/spree/user_passwords/edit.html.erb
spree_auth_devise-4.0.0.rc2 app/views/spree/user_passwords/edit.html.erb
spree_auth_devise-4.0.0.rc1 app/views/spree/user_passwords/edit.html.erb