feature/UI-Update (#11)

Co-authored-by: blaerf <blaerf@gmx.de>
Reviewed-on: https://git.eckertplayground.de/taarly/PHP_AdminTool_Projekt/pulls/11
This commit is contained in:
blaerf 2025-11-29 05:42:36 +00:00
parent bce1a0c719
commit daba87e48f
2 changed files with 5 additions and 2 deletions

View File

@ -96,5 +96,4 @@ declare(strict_types=1);
</div> </div>
</div> </div>
<!-- Hier kann man du später Charts, weitere Karten usw. anhängen -->
<!-- Hier kannst du später Charts, weitere Karten usw. anhängen -->

View File

@ -33,6 +33,7 @@ declare(strict_types=1);
<table class="table table-bordered" id="usersTable" width="100%" cellspacing="0"> <table class="table table-bordered" id="usersTable" width="100%" cellspacing="0">
<thead> <thead>
<tr> <tr>
<th><input type="checkbox" name="selectAllUsers"></th>
<th>Anmeldename (sAMAccountName)</th> <th>Anmeldename (sAMAccountName)</th>
<th>Anzeigename</th> <th>Anzeigename</th>
<th>E-Mail</th> <th>E-Mail</th>
@ -41,6 +42,9 @@ declare(strict_types=1);
<tbody> <tbody>
<?php foreach ($users as $user): ?> <?php foreach ($users as $user): ?>
<tr> <tr>
<td>
<input type="checkbox" name="selectUser<?php echo htmlspecialchars($user['samaccountname'] ?? '', ENT_QUOTES | ENT_SUBSTITUTE, 'UTF-8'); ?>">
</td>
<td> <td>
<?php echo htmlspecialchars($user['samaccountname'] ?? '', ENT_QUOTES | ENT_SUBSTITUTE, 'UTF-8'); ?> <?php echo htmlspecialchars($user['samaccountname'] ?? '', ENT_QUOTES | ENT_SUBSTITUTE, 'UTF-8'); ?>
</td> </td>