2016-10-13 19:03:12 -04:00
|
|
|
- content_for :page_title do
|
2018-03-06 19:39:40 -05:00
|
|
|
= t('auth.security')
|
2016-10-13 19:03:12 -04:00
|
|
|
|
2018-03-06 19:39:40 -05:00
|
|
|
%h4= t('auth.change_password')
|
2017-09-02 09:49:28 -04:00
|
|
|
= simple_form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put, class: 'auth_edit' }) do |f|
|
2016-10-18 10:37:15 -04:00
|
|
|
= render 'shared/error_messages', object: resource
|
2016-03-05 16:43:05 -05:00
|
|
|
|
2018-02-28 13:04:53 -05:00
|
|
|
- if !use_seamless_external_login? || resource.encrypted_password.present?
|
2018-02-02 04:18:55 -05:00
|
|
|
= f.input :email, placeholder: t('simple_form.labels.defaults.email'), input_html: { 'aria-label' => t('simple_form.labels.defaults.email') }
|
|
|
|
= f.input :password, placeholder: t('simple_form.labels.defaults.new_password'), input_html: { 'aria-label' => t('simple_form.labels.defaults.new_password'), :autocomplete => 'off' }
|
|
|
|
= f.input :password_confirmation, placeholder: t('simple_form.labels.defaults.confirm_new_password'), input_html: { 'aria-label' => t('simple_form.labels.defaults.confirm_new_password'), :autocomplete => 'off' }
|
|
|
|
= f.input :current_password, placeholder: t('simple_form.labels.defaults.current_password'), input_html: { 'aria-label' => t('simple_form.labels.defaults.current_password'), :autocomplete => 'off' }
|
2016-10-13 20:28:49 -04:00
|
|
|
|
2018-02-02 04:18:55 -05:00
|
|
|
.actions
|
|
|
|
= f.button :button, t('generic.save_changes'), type: :submit
|
|
|
|
- else
|
2018-02-28 13:04:53 -05:00
|
|
|
%p.hint= t('users.seamless_external_login')
|
2017-06-14 12:01:27 -04:00
|
|
|
|
2017-06-25 10:54:30 -04:00
|
|
|
= render 'sessions'
|
|
|
|
|
2017-06-19 09:12:31 -04:00
|
|
|
- if open_deletion?
|
2017-06-14 12:01:27 -04:00
|
|
|
|
2018-03-06 19:39:40 -05:00
|
|
|
%h4= t('auth.delete_account')
|
2017-06-19 09:12:31 -04:00
|
|
|
%p.muted-hint= t('auth.delete_account_html', path: settings_delete_path)
|