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.
2017-11-27 13:47:06 -08:00
|
|
|
- content_for :page_title do
|
|
|
|
= t('settings.migrate')
|
|
|
|
|
|
|
|
= simple_form_for @migration, as: :migration, url: settings_migration_path, html: { method: :put } do |f|
|
|
|
|
- if @migration.account
|
|
|
|
%p.hint= t('migrations.currently_redirecting')
|
|
|
|
|
|
|
|
.fields-group
|
2018-07-28 10:25:33 -07:00
|
|
|
= render partial: 'application/card', locals: { account: @migration.account }
|
2017-11-27 13:47:06 -08:00
|
|
|
|
|
|
|
= render 'shared/error_messages', object: @migration
|
|
|
|
|
|
|
|
.fields-group
|
|
|
|
= f.input :acct, placeholder: t('migrations.acct')
|
|
|
|
|
|
|
|
.actions
|
|
|
|
= f.button :button, t('migrations.proceed'), type: :submit, class: 'negative'
|