diff --git a/view_password.module b/view_password.module
new file mode 100644
index 0000000..b0edb1d
--- /dev/null
+++ b/view_password.module
@@ -0,0 +1,24 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\view_password\view_password.module.
+ */
+
+use Drupal\Core\Routing\RouteMatchInterface;
+
+/**
+ * Implements hook_help().
+ */
+function view_password_help($route_name, RouteMatchInterface $route_match) {
+  switch ($route_name) {
+
+    case 'help.page.view_password':
+      $output = '';
+      $output .= '<h3>' . t('About') . '</h3>';
+      $output .= '<p>' . t('View Password module will help the user to see what password they entered.') . '</p>';
+      return $output;
+
+    default:
+  }
+}
