fd
This commit is contained in:
parent
5e2a50ddfb
commit
4896986b01
|
|
@ -14,7 +14,7 @@
|
|||
<div class="card-body">
|
||||
<div class="row g-3">
|
||||
<div class="col-md-6 col-lg-3">
|
||||
<label class="form-label small fw-bold text-muted"><?= _("Numéro Bénéficiaire") ?></label>
|
||||
<label class="form-label small fw-bold text-dark"><?= _("Numéro Bénéficiaire") ?></label>
|
||||
<div class="input-group">
|
||||
<span class="input-group-text bg-light border-end-0"><i class="fas fa-id-card"></i></span>
|
||||
<input class="form-control border-start-0" type="text" id="numeroBeneficiaire" name="numeroBeneficiaire" autofocus autocomplete="off">
|
||||
|
|
@ -22,7 +22,7 @@
|
|||
</div>
|
||||
|
||||
<div class="col-md-6 col-lg-3">
|
||||
<label class="form-label small fw-bold text-muted"><?= _("Numéro Famille") ?></label>
|
||||
<label class="form-label small fw-bold text-dark"><?= _("Numéro Famille") ?></label>
|
||||
<div class="input-group">
|
||||
<span class="input-group-text bg-light border-end-0"><i class="fas fa-users"></i></span>
|
||||
<input class="form-control border-start-0" type="text" id="numeroAdherent" name="numeroAdherent" autocomplete="off">
|
||||
|
|
@ -30,17 +30,17 @@
|
|||
</div>
|
||||
|
||||
<div class="col-md-6 col-lg-3">
|
||||
<label class="form-label small fw-bold text-muted"><?= _("Nom") ?></label>
|
||||
<label class="form-label small fw-bold text-dark"><?= _("Nom") ?></label>
|
||||
<input class="form-control" type="text" id="nomBeneficiaire" name="nomBeneficiaire" placeholder="Ex: DOE" autocomplete="off">
|
||||
</div>
|
||||
|
||||
<div class="col-md-6 col-lg-3">
|
||||
<label class="form-label small fw-bold text-muted"><?= _("Prénoms") ?></label>
|
||||
<label class="form-label small fw-bold text-dark"><?= _("Prénoms") ?></label>
|
||||
<input class="form-control" type="text" id="prenomsBeneficiaire" name="prenomsBeneficiaire" autocomplete="off">
|
||||
</div>
|
||||
|
||||
<div class="col-md-6 col-lg-3">
|
||||
<label class="form-label small fw-bold text-muted"><?= _("Téléphone") ?></label>
|
||||
<label class="form-label small fw-bold text-dark"><?= _("Téléphone") ?></label>
|
||||
<div class="input-group">
|
||||
<span class="input-group-text bg-light border-end-0"><i class="fas fa-phone"></i></span>
|
||||
<input class="form-control border-start-0" type="text" id="telephonePortable" name="telephonePortable" autocomplete="off">
|
||||
|
|
@ -48,7 +48,7 @@
|
|||
</div>
|
||||
|
||||
<div class="col-md-6 col-lg-3">
|
||||
<label class="form-label small fw-bold text-muted">E-mail</label>
|
||||
<label class="form-label small fw-bold text-dark">E-mail</label>
|
||||
<div class="input-group">
|
||||
<span class="input-group-text bg-light border-end-0"><i class="fas fa-envelope"></i></span>
|
||||
<input class="form-control border-start-0" type="email" id="email" name="email" autocomplete="off">
|
||||
|
|
@ -89,7 +89,7 @@
|
|||
<div class="table-responsive">
|
||||
<?php if (is_array($beneficiaires) && count($beneficiaires) > 0): ?>
|
||||
<table class="table table-hover align-middle mb-0" style="font-size: 0.85rem;">
|
||||
<thead class="bg-light text-muted small text-uppercase">
|
||||
<thead class="bg-light text-dark small text-uppercase">
|
||||
<tr>
|
||||
<th class="px-3 border-0 text-center"><?= _("N° Bénéf.") ?></th>
|
||||
<th class="border-0"><?= _("Nom & Prénoms") ?></th>
|
||||
|
|
@ -117,7 +117,7 @@
|
|||
</td>
|
||||
<td>
|
||||
<div class="fw-bold text-dark"><?= $this->nettoyer($beneficiaire['nomBeneficiaire']) ?></div>
|
||||
<div class="small text-muted"><?= $this->nettoyer($beneficiaire['prenomsBeneficiaire']) ?></div>
|
||||
<div class="small text-dark"><?= $this->nettoyer($beneficiaire['prenomsBeneficiaire']) ?></div>
|
||||
</td>
|
||||
<td class="text-center small"><?= $this->nettoyer($beneficiaire['codeLienParente']) ?></td>
|
||||
<td class="text-center small"><?= dateLang($this->nettoyer($beneficiaire['dateNaissance'])) ?></td>
|
||||
|
|
@ -133,7 +133,7 @@
|
|||
<?php else: ?>
|
||||
<div class="text-center py-5">
|
||||
<i class="fas fa-search-minus fa-3x mb-3 text-light"></i>
|
||||
<p class="text-muted"><?= _("Aucun bénéficiaire trouvé. Ajustez vos critères.") ?></p>
|
||||
<p class="text-dark"><?= _("Aucun bénéficiaire trouvé. Ajustez vos critères.") ?></p>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user