diff --git a/src/Form/MigrateUpgradeForm.php b/src/Form/MigrateUpgradeForm.php
index 0e9b166..c5d225d 100644
--- a/src/Form/MigrateUpgradeForm.php
+++ b/src/Form/MigrateUpgradeForm.php
@@ -609,27 +609,29 @@ class MigrateUpgradeForm extends FormBase implements ConfirmFormInterface {
     }
     else {
       $form['info_header'] = [
-        '#markup' => '<p>' . $this->t('Use this utility to upgrade from a previous version of Drupal.') . '</p><p>' . $this->t('For more detailed information, see the <a href="https://www.drupal.org/upgrade">upgrading handbook</a>. If you are unsure what these terms mean you should probably contact your hosting provider.') . '</p>',
+        '#markup' => '<p>' . $this->t('To upgrade, complete the following.')
       ];
 
       $info[] = $this->t('Make sure that the host this site is on has access to the database for your previous site.');
-      $info[] = $this->t('If your previous site has private files to be migrated, a copy of your files directory should be accessible on the host this site is on.');
-      $info[] = $this->t('Make sure any modules you wish to have upgraded are enabled on both the source site and the current site.');
-      $info[] = $this->t('Put your site into <a href=":url">maintenance mode</a>.', [
-        ':url' => Url::fromRoute('system.site_maintenance_mode')
-                     ->toString(TRUE)
-                     ->getGeneratedUrl(),
-      ]);
-      $info[] = $this->t('<strong>Back up your database</strong>. This process will change your database values and in case of emergency you may need to revert to a backup.');
+      $info[] = $this->t('If your previous site has private files to be migrated, a copy of your files directory must be accessible on the host this site is on.');
+      $info[] = $this->t('In general, enable all modules on this site that are enabled on the previous site. For example, if you have used the book module on the previous site then you must enable the book module on this site for that data to be available on this site.');
+      $info[] = $this->t('Put this site into <a href=":url">maintenance mode</a>.', [
+                  ':url' => Url::fromRoute('system.site_maintenance_mode')
+                  ->toString(TRUE)
+                  ->getGeneratedUrl(),
+                ]);
+      $info[] = $this->t('<strong>Back up the database for this site</strong>. Upgrade will change the database for this site.');
 
       $form['info'] = [
         '#theme' => 'item_list',
         '#list_type' => 'ol',
         '#items' => $info,
       ];
+
       $form['info_footer'] = [
-        '#markup' => '<p>' . $this->t('When you have performed the steps above, you may proceed.') . '</p>',
+        '#markup' => '<p>' . $this->t('For more detailed information, see the <a href="https://www.drupal.org/upgrade/migrate">Upgrading from Drupal 6 or 7 to Drupal 8</a>. If you are unsure how to setup the database or file access contact your hosting provider.'),
       ];
+
       $validate = [];
     }
 
