You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
533 B

  1. - content_for :page_title do
  2. = t('admin.accounts.change_email.title', username: @account.acct)
  3. = simple_form_for @user, url: admin_account_change_email_path(@account.id) do |f|
  4. .fields-group
  5. = f.input :email, wrapper: :with_label, disabled: true, label: t('admin.accounts.change_email.current_email')
  6. .fields-group
  7. = f.input :unconfirmed_email, wrapper: :with_label, label: t('admin.accounts.change_email.new_email')
  8. .actions
  9. = f.button :submit, class: "button", value: t('admin.accounts.change_email.submit')