Skip to content

Commit

Permalink
Fix #6611: Typo in change password template (#6616)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gargron committed Mar 4, 2018
1 parent 51d7609 commit b66ec3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/auth/passwords/edit.html.haml
Expand Up @@ -4,7 +4,7 @@
= simple_form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put }) do |f|
= render 'shared/error_messages', object: resource

- if !use_seamless_external_login?? || resource.encrypted_password.present?
- if !use_seamless_external_login? || resource.encrypted_password.present?
= f.input :reset_password_token, as: :hidden

= f.input :password, autofocus: true, placeholder: t('simple_form.labels.defaults.new_password'), input_html: { 'aria-label' => t('simple_form.labels.defaults.new_password'), :autocomplete => 'off' }
Expand Down

0 comments on commit b66ec3b

Please sign in to comment.