diff --git a/src/app/controllers/Page/SettingsPage.php b/src/app/controllers/Page/SettingsPage.php
index 8ed4155a6344fe52947854c6cb844419b6a848ab..1ace5be93cbcd0f908580af4dfb3c435b1dc5394 100644
--- a/src/app/controllers/Page/SettingsPage.php
+++ b/src/app/controllers/Page/SettingsPage.php
@@ -17,10 +17,14 @@ class SettingsPage extends BaseController{
 
     public function get($urlParams)
     {
-        if($urlParams[0] = 'profile'){
+        if($urlParams[0] = 'profile') {
             require PAGE_PATH . "/profile_setting.php";
             exit();
         }
+        if($urlParams[0] = 'users') {
+            require PAGE_PATH . "/admin.php";
+            exit();
+        }
     }
 }