diff --git a/partials/landingpage/accountsetup/system.php b/partials/landingpage/accountsetup/system.php index 4fe5b74..9b5b033 100644 --- a/partials/landingpage/accountsetup/system.php +++ b/partials/landingpage/accountsetup/system.php @@ -50,4 +50,5 @@ require dirname(__DIR__) . '/../structure/layout_start.php'; + diff --git a/partials/structure/header.php b/partials/structure/header.php index c523024..7e9c3b7 100644 --- a/partials/structure/header.php +++ b/partials/structure/header.php @@ -4,6 +4,7 @@ $appBaseUrl = $layoutContext['app_base_url'] ?? ''; $navLinks = $navLinks ?? [ ['id' => 'dashboard', 'label' => 'Dashboard', 'href' => $appBaseUrl . '/admin/dashboard.php'], + ['id' => 'system', 'label' => 'Systemeinstellungen', 'href' => $appBaseUrl . '/admin/system.php'], ['id' => 'settings', 'label' => 'API & Tabellen', 'href' => $appBaseUrl . '/admin/settings.php'], ['id' => 'users', 'label' => 'Userverwaltung', 'href' => $appBaseUrl . '/admin/users.php'], ['id' => 'profile', 'label' => 'Mein Konto', 'href' => $appBaseUrl . '/admin/profile.php'], @@ -48,6 +49,7 @@ $showNavLinks = !$hasHeaderTabs && !empty($navLinks);