diff --git a/src/Form/Pagingform.php b/src/Form/Pagingform.php
new file mode 100644
index 0000000..1fbc450
--- /dev/null
+++ b/src/Form/Pagingform.php
@@ -0,0 +1,223 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\content_pager\src\Form\Pagingform.
+ */
+namespace Drupal\content_pager\Form;
+
+use Drupal\Core\Form\FormBase;
+use Drupal\Core\Form\FormStateInterface;
+
+class Pagingform extends FormBase {
+  /**
+   * {@inheritdoc}
+   */
+  public function getFormId() {
+    return 'contentpager';
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function buildForm(array $form, FormStateInterface $form_state) {
+    $contentTypes = \Drupal::service('entity.manager')->getStorage('node_type')->loadMultiple();
+
+
+
+      // Set the id of the top-level form tag.
+      $form['#id'] = 'contentpager';
+    $contentTypesList = [];
+    foreach ($contentTypes as $contentType) {
+
+      $contentTypesList[$contentType->id()] = $contentType->label();
+        $content_type= $contentType->label();
+        $content_type = 'Article';
+
+        $form['Article'] = array(
+            '#type' => 'fieldset',
+            '#title' => $content_type,
+        );
+
+        $field_options = array('body');
+        // Left column fieldset.
+        $form[$content_type]['paging_config']['paging_left'] = array(
+            '#type' => 'fieldset',
+            '#collapsible' => FALSE,
+            '#collapsed' => FALSE,
+            '#attributes' => array('class' => array('paging-left')),
+        );
+
+
+        // Paging toggle checkbox.
+        $form[$content_type]['paging_config']['paging_left']['paging_enabled_' . $content_type] = array(
+            '#type' => 'checkbox',
+            '#title' => 'Enable paging',
+
+        );
+
+        // Paging toggle checkbox.
+        $form[$content_type]['paging_config']['paging_left']['paging_field_' . $content_type] = array(
+            '#type' => 'radios',
+            '#title' => 'Select field to use for page breaks',
+            '#options' => $field_options,
+
+        );
+
+        // Change "Read more" path when first page is greater than or equal to the teaser.
+        $form[$content_type]['paging_config']['paging_left']['paging_read_more_enabled_' . $content_type] = array(
+            '#type' => 'checkbox',
+            '#title' => t('Link "Read more" to second page'),
+            '#description' => t('When enabled, the "Read more" link for teasers will
+        link to the second page of the content if the teaser is larger than the
+        first page or if they are the same.'),
+
+        );
+
+        // Set the browser's title to current page's name.
+        $form[$content_type]['paging_config']['paging_left']['paging_name_title_' . $content_type] = array(
+            '#type' => 'checkbox',
+            '#title' => t('Change page title to name of current page'),
+            '#description' => t("Change the node's and browser window's title into
+        name of the current page."),
+
+        );
+
+        // Right column fieldset.
+        $form[$content_type]['paging_config']['paging_right'] = array(
+            '#type' => 'fieldset',
+            '#collapsible' => FALSE,
+            '#collapsed' => FALSE,
+
+        );
+
+
+        $form[$content_type]['paging_config']['paging_right']['paging_automatic_method_' . $content_type] = array(
+            '#type' => 'radios',
+            '#title' => t('Automatic paging method'),
+            '#options' => array(
+                'disabled' => t('Disabled'),
+                'chars' => t('Limit by characters <small>(recommended)</small>'),
+                'words' => t('Limit by words')),
+
+            '#description' => t('Method for automatic paging (ignored where paging
+        separator string is used).'),
+
+            '#attributes' => array('class' => array('paging-method')),
+
+        );
+
+
+
+        // Get the length options.
+        // @TODO: Do we really need 750?
+        $char_len_options = array(-1 => 750) + range(500, 7500, 500);
+        $word_len = range(100, 1000, 50);
+        asort($char_len_options);
+
+      // Automatic paging method. Select list to choose the number of characters per page.
+        $form[$content_type]['paging_config']['paging_right']['paging_automatic_chars_' . $content_type] = array(
+            '#type' => 'select',
+            '#title' => t('Length of each page'),
+            '#options' => $char_len_options,
+            '#field_suffix' => t('characters'),
+
+            '#description' => '<br />' . t('Number of characters to display per page.'),
+            //'#default_value' => variable_get('paging_automatic_chars_' . $content_type, 4000),
+            '#prefix' => '<div class="container-inline paging-chars paging-chars-' . $content_type . '">',
+            '#suffix' => '</div>',
+            '#states' => array(
+                'visible' => array(// action to take.
+                    ':input[name="paging_enabled_' . $content_type . '"]' => array('checked' => TRUE),
+                    ':input[name="paging_automatic_method_' . $content_type . '"]' => array('value' => 'chars'),
+                ),
+            ),
+        );
+
+       // Automatic paging method. Text box to choose orphan size.
+        $form[$content_type]['paging_config']['paging_right']['paging_automatic_chars_orphan_' . $content_type] = array(
+            '#type' => 'textfield',
+            '#title' => t('Length of orphans'),
+            '#size' => 6,
+            '#field_suffix' => t('characters'),
+
+            '#description' => '<br />' . t('Number of characters to consider as an orphan.'),
+           // '#default_value' => variable_get('paging_automatic_chars_orphan_' . $content_type, 100),
+            '#prefix' => '<div class="container-inline paging-chars-orphan paging-chars-orphan-' . $content_type . '">',
+            '#suffix' => '</div>',
+            '#states' => array(
+                'visible' => array(// action to take.
+                    ':input[name="paging_enabled_' . $content_type . '"]' => array('checked' => TRUE),
+                    ':input[name="paging_automatic_method_' . $content_type . '"]' => array('value' => 'chars'),
+                ),
+            ),
+        );
+
+        // Automatic paging method. Select list to choose the number of words per page.
+        $form[$content_type]['paging_config']['paging_right']['paging_automatic_words_' . $content_type] = array(
+            '#type' => 'select',
+            '#title' => t('Length of each page'),
+            '#options' => $word_len,
+            '#field_suffix' => t('words'),
+
+            '#description' => '<br />' . t('Number of words to display per page.'),
+           // '#default_value' => variable_get('paging_automatic_words_' . $content_type, 400),
+            '#prefix' => '<div class="container-inline paging-words paging-words-' . $content_type . '">',
+            '#suffix' => '</div>',
+            '#states' => array(
+                'visible' => array(// action to take.
+                    ':input[name="paging_enabled_' . $content_type . '"]' => array('checked' => TRUE),
+                    ':input[name="paging_automatic_method_' . $content_type . '"]' => array('value' => 'words'),
+                ),
+            ),
+        );
+
+        // Automatic paging method. Text box to set orphan page size.
+        $form[$content_type]['paging_config']['paging_right']['paging_automatic_words_orphan_' . $content_type] = array(
+            '#type' => 'textfield',
+            '#title' => t('Length of orphans'),
+            '#size' => 6,
+            '#field_suffix' => t('words'),
+
+            '#description' => '<br />' . t('Number of wordss to consider as an orphan.'),
+          //  '#default_value' => variable_get('paging_automatic_words_orphan_' . $content_type, 200),
+            '#prefix' => '<div class="container-inline paging-words-orphan paging-words-orphan-' . $content_type . '">',
+            '#suffix' => '</div>',
+            '#states' => array(
+                'visible' => array(// action to take.
+                    ':input[name="paging_enabled_' . $content_type . '"]' => array('checked' => TRUE),
+                    ':input[name="paging_automatic_method_' . $content_type . '"]' => array('value' => 'words'),
+                ),
+            ),
+        );
+
+
+
+
+
+    }
+
+      $form['submit'] = array(
+          '#type' => 'submit',
+          '#value' => $this->t('Save Configuration'),
+
+      );
+
+
+
+    return $form;
+  }
+
+  /**
+   * Form submission handler.
+   *
+   * @param array $form
+   *   An associative array containing the structure of the form.
+   * @param \Drupal\Core\Form\FormStateInterface $form_state
+   *   The current state of the form.
+   */
+  public function submitForm(array &$form, FormStateInterface $form_state) {
+
+
+  }
+}
\ No newline at end of file
