Add ActiveDirectory navigation and group management pages

- Added new ActiveDirectory section in the navigation bar (`navbar.html`) with expandable options.
- Implemented `GroupReview.php` for reviewing AD group details and tiering.
- Implemented `GroupSearch.php` for searching and displaying AD group memberships with autocomplete functionality.
- Fixed incorrect link in `index.php` pointing to `AD-Detail.php`.
This commit is contained in:
e025532
2025-07-17 10:21:59 +02:00
parent 4b90b1ee5c
commit 1f794e2273
4 changed files with 189 additions and 1 deletions

View File

@@ -79,7 +79,7 @@
$result = $conn->query("SELECT count(*) as nbADinactive FROM adcomputers WHERE enabled = 'False'");
$nbADinactive = mysqli_fetch_array($result)['nbADinactive'];
?>
<p class="card-text text-center"><b><a href="\dashboard\ad-detail.php"><?php echo $nbADactive; ?></b> Devices <small>(<?php echo $nbADinactive; ?> inactifs)</small></a></p>
<p class="card-text text-center"><b><a href="\dashboard\AD-Detail.php"><?php echo $nbADactive; ?></b> Devices <small>(<?php echo $nbADinactive; ?> inactifs)</small></a></p>
</div>
</div>
</div>