feature/logging_Service #16

Closed
blaerf wants to merge 28 commits from feature/logging_Service into main
2 changed files with 5 additions and 2 deletions
Showing only changes of commit daba87e48f - Show all commits

View File

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