Sha256: 0cf0e14874459a739279e170708897a7afbfbcd82d2d3f21611c0c4a9798206f

Contents?: true

Size: 738 Bytes

Versions: 2

Compression:

Stored size: 738 Bytes

Contents

h2
  | Change your password
= form_with model: resource, url: user_password_path, html: {method: :put}, local: true do |f|
  = devise_error_messages!
  = f.hidden_field :reset_password_token
  .form-group
    = f.label :password, 'New password'
    br
    - if @minimum_password_length
      em
        | (
        = @minimum_password_length
        |  characters minimum)
      br
    = f.password_field :password, autofocus: true, autocomplete: 'off', class: 'form-controller'
  .field
    = f.label :password_confirmation, 'Confirm new password'
    br
    = f.password_field :password_confirmation, autocomplete: 'off'
  button.btn.btn-outline-success
    | Send me reset password instructions
= render 'mini_blog/users/shared/links'

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mini_blog-0.1.1 app/views/mini_blog/users/passwords/edit.html.slim
mini_blog-0.1.0 app/views/mini_blog/users/passwords/edit.html.slim