diff --git a/cp/app/Controllers/ContactsController.php b/cp/app/Controllers/ContactsController.php
new file mode 100644
index 0000000..162f2fd
--- /dev/null
+++ b/cp/app/Controllers/ContactsController.php
@@ -0,0 +1,19 @@
+container->get('db'));
+ $users = $userModel->getAllUsers();
+ return view($response,'admin/contacts/index.twig', compact('users'));
+ }
+
+}
diff --git a/cp/app/Controllers/HostsController.php b/cp/app/Controllers/HostsController.php
new file mode 100644
index 0000000..cacbec3
--- /dev/null
+++ b/cp/app/Controllers/HostsController.php
@@ -0,0 +1,19 @@
+container->get('db'));
+ $users = $userModel->getAllUsers();
+ return view($response,'admin/hosts/index.twig', compact('users'));
+ }
+
+}
diff --git a/cp/resources/views/admin/contacts/index.twig b/cp/resources/views/admin/contacts/index.twig
new file mode 100644
index 0000000..ed41fef
--- /dev/null
+++ b/cp/resources/views/admin/contacts/index.twig
@@ -0,0 +1,82 @@
+{% extends "layouts/app.twig" %}
+
+{% block title %}Contacts{% endblock %}
+
+{% block content %}
+
+
+
+{% endblock %}
\ No newline at end of file
diff --git a/cp/resources/views/admin/hosts/index.twig b/cp/resources/views/admin/hosts/index.twig
new file mode 100644
index 0000000..6da73d8
--- /dev/null
+++ b/cp/resources/views/admin/hosts/index.twig
@@ -0,0 +1,81 @@
+{% extends "layouts/app.twig" %}
+
+{% block title %}Hosts{% endblock %}
+
+{% block content %}
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ |
+ |
+ Actions |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+{% endblock %}
\ No newline at end of file
diff --git a/cp/resources/views/layouts/app.twig b/cp/resources/views/layouts/app.twig
index 07b691e..d2cf81e 100644
--- a/cp/resources/views/layouts/app.twig
+++ b/cp/resources/views/layouts/app.twig
@@ -171,6 +171,24 @@
+
+
+
+
+
+ Contacts
+
+
+
+
+
+
+
+
+ Hosts
+
+
+
@@ -287,8 +305,12 @@
{% include 'partials/js-dash.twig' %}
{% elseif route_is('domains') %}
{% include 'partials/js-domains.twig' %}
+{% elseif route_is('contacts') %}
+ {% include 'partials/js-contacts.twig' %}
+{% elseif route_is('hosts') %}
+ {% include 'partials/js-hosts.twig' %}
{% else %}
{% include 'partials/js.twig' %}
{% endif %}