2018-04-10 17:16:06 +10:00
|
|
|
- content_for :page_title do
|
2022-03-22 20:07:11 +11:00
|
|
|
= t('admin.accounts.change_email.title', username: @account.username)
|
2018-04-10 17:16:06 +10:00
|
|
|
|
|
|
|
= simple_form_for @user, url: admin_account_change_email_path(@account.id) do |f|
|
2018-09-19 00:45:58 +10:00
|
|
|
.fields-group
|
2019-02-06 01:11:35 +11:00
|
|
|
= f.input :email, wrapper: :with_label, hint: false, disabled: true, label: t('admin.accounts.change_email.current_email')
|
2018-09-19 00:45:58 +10:00
|
|
|
|
|
|
|
.fields-group
|
|
|
|
= f.input :unconfirmed_email, wrapper: :with_label, label: t('admin.accounts.change_email.new_email')
|
|
|
|
|
|
|
|
.actions
|
|
|
|
= f.button :submit, class: "button", value: t('admin.accounts.change_email.submit')
|