diff --git a/app/views/shared/_admin.html.erb b/app/views/shared/_admin.html.erb
new file mode 100644
index 0000000..7ed7b91
--- /dev/null
+++ b/app/views/shared/_admin.html.erb
@@ -0,0 +1,39 @@
+
+ <%= content_tag(:li, active_class(admin_path)) do %>
+ <%= link_to 'Admin', admin_path %>
+ <% end %>
+ <%= content_tag(:li, active_class(admin_clients_path, true)) do %>
+ <%= link_to 'Clients', admin_clients_path %>
+ <% end %>
+ <%= content_tag(:li, active_class(unverified_admin_hosts_path, true)) do %>
+ <%= link_to 'Hosts', unverified_admin_hosts_path %>
+ <% end %>
+ <%= content_tag(:li, { class: "dropdown #{active_class(admin_users_path)[:class]}" }) do %>
+
+ Users
+
+
+ <% end %>
+ <%= content_tag(:li, active_class(admin_pools_path)) do %>
+ <%= link_to 'Pools', admin_pools_path %>
+ <% end %>
+ <%= content_tag(:li, active_class(admin_settings_path)) do %>
+ <%= link_to 'Settings', admin_settings_path %>
+ <% end %>
+
+
diff --git a/app/views/shared/_nav.html.erb b/app/views/shared/_nav.html.erb
index ae04748..1e24683 100644
--- a/app/views/shared/_nav.html.erb
+++ b/app/views/shared/_nav.html.erb
@@ -1,79 +1,40 @@