This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2018-04-10 00:16:06 -07:00
|
|
|
- content_for :page_title do
|
|
|
|
= t('admin.accounts.change_email.title', username: @account.acct)
|
|
|
|
|
|
|
|
= simple_form_for @user, url: admin_account_change_email_path(@account.id) do |f|
|
2018-09-18 07:45:58 -07:00
|
|
|
.fields-group
|
|
|
|
= f.input :email, wrapper: :with_label, disabled: true, label: t('admin.accounts.change_email.current_email')
|
|
|
|
|
|
|
|
.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')
|