Update statistics UI to use card layout

Replaces the alert box with a card component for the statistics section, improving visual consistency. Adds text color classes for better emphasis and readability.
pull/3318/head
Peter Goodhall 2025-08-09 23:19:18 +01:00
rodzic c28aaf4665
commit 3afd0b7de2
1 zmienionych plików z 11 dodań i 9 usunięć

Wyświetl plik

@ -53,15 +53,17 @@ $wwff = 0;
<!-- Statistics -->
<div class="row mb-3">
<div class="col-md-8">
<div class="alert alert-info py-2 mb-0">
<div class="row text-center">
<div class="col-md-6 col-6">
<strong id="activeBandsCount">0</strong><br>
<small>Active for QSO Entry</small>
</div>
<div class="col-md-6 col-6">
<strong><?php echo count($bands); ?></strong><br>
<small>Total Bands Configured</small>
<div class="card border-0 bg-light">
<div class="card-body py-2">
<div class="row text-center">
<div class="col-md-6 col-6">
<strong id="activeBandsCount" class="text-primary">0</strong><br>
<small class="text-muted">Active for QSO Entry</small>
</div>
<div class="col-md-6 col-6">
<strong class="text-primary"><?php echo count($bands); ?></strong><br>
<small class="text-muted">Total Bands Configured</small>
</div>
</div>
</div>
</div>