Sha256: 02511428ca6c3dbd96f5da7dc1914511b9740824036e1e51e69c6a146b8b3ad6

Contents?: true

Size: 1 KB

Versions: 1

Compression:

Stored size: 1 KB

Contents

<div class="grid-x grid-margin-x">
    <div class="small-4 small-offset-4 cell">
        <h2 class="text-center">Change your password</h2>

        <%= 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.label :password, "New password" %><br/>
            <% if @minimum_password_length %>
                <em>(<%= @minimum_password_length %> characters minimum)</em><br/>
            <% end %>
            <%= f.password_field :password, autofocus: true, autocomplete: "off" %>

            <%= f.label :password_confirmation, "Confirm new password" %><br/>
            <%= f.password_field :password_confirmation, autocomplete: "off" %>

            <%= f.submit "Change my password", class: 'button primary large' %>

        <% end %>

        <div class="text-center">
            <%= render "devise/shared/links" %>
        </div>

    </div>
</div>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
devise-foundationed-0.1.1 app/views/devise/passwords/edit.html.erb