Initial migration from AdminLTE 3 to 4, bootstrap 4 to 5

This commit is contained in:
johnnyq
2026-08-14 13:22:11 -04:00
parent 691059aab2
commit a084e37c39
458 changed files with 6069 additions and 8634 deletions

View File

@@ -24,9 +24,9 @@ $passwords_not_rotated_sql = mysqli_query($mysqli,
<div class="card card-dark">
<div class="card-header py-2">
<h3 class="card-title mt-2"><i class="fas fa-fw fa-life-ring mr-2"></i>Client credentials not changed/rotated in the last 90 days</h3>
<h3 class="card-title mt-2"><i class="fas fa-fw fa-life-ring me-2"></i>Client credentials not changed/rotated in the last 90 days</h3>
<div class="card-tools">
<button type="button" class="btn btn-primary d-print-none" onclick="window.print();"><i class="fas fa-fw fa-print mr-2"></i>Print</button>
<button type="button" class="btn btn-primary d-print-none" onclick="window.print();"><i class="fas fa-fw fa-print me-2"></i>Print</button>
</div>
</div>
<div class="card-body">
@@ -36,9 +36,9 @@ $passwords_not_rotated_sql = mysqli_query($mysqli,
<thead>
<tr>
<th>Client</th>
<th class="text-right">Credential Name</th>
<th class="text-right">Credential Description</th>
<th class="text-right">Credential Password Last Changed</th>
<th class="text-end">Credential Name</th>
<th class="text-end">Credential Description</th>
<th class="text-end">Credential Password Last Changed</th>
</tr>
</thead>
<tbody>
@@ -58,9 +58,9 @@ $passwords_not_rotated_sql = mysqli_query($mysqli,
<tr>
<td><?= $client_name ?></td>
<td class="text-right"><?= $credential_name ?></td>
<td class="text-right"><?= $credential_description ?></td>
<td class="text-right"><?= timeAgo($credential_password_changed) . " (" . $credential_password_changed . ")" ?></td>
<td class="text-end"><?= $credential_name ?></td>
<td class="text-end"><?= $credential_description ?></td>
<td class="text-end"><?= timeAgo($credential_password_changed) . " (" . $credential_password_changed . ")" ?></td>
</tr>
<?php } ?>