diff --git a/simple_redirect.module b/simple_redirect.module
new file mode 100644
index 0000000..2cbdd4b
--- /dev/null
+++ b/simple_redirect.module
@@ -0,0 +1,24 @@
+<?php
+
+/**
+ * @file
+ * Currenlty logged-in users module file.
+ */
+
+use Drupal\Core\Routing\RouteMatchInterface;
+
+/**
+ * Implements hook_help().
+ */
+function simple_redirect_help($route_name, RouteMatchInterface $route_match) {
+    switch ($route_name) {
+        // Main module help for the custom module.
+        case 'help.page.simple_redirect':
+            $output = '';
+            $output .= '<h3>' . t('About') . '</h3>';
+            $output .= '<p>' . t('Using this admin can redirect their user to new path either after user registration or after user login.') . '</p>';
+            return $output;
+
+        default:
+    }
+}
