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