feature/UI-Update #12

Merged
blaerf merged 4 commits from feature/UI-Update into develop 2025-11-29 06:32:51 +00:00
Showing only changes of commit 2efe1bb6d3 - Show all commits

View File

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