This commit is contained in:
KONE SOREL 2026-01-12 08:53:12 +00:00
parent d9bc910c45
commit 28c9664fdb

View File

@ -79,32 +79,32 @@
<div class="card-body bg-light">
<div class="row g-3">
<div class="col-md-4">
<label class="form-label small text-muted text-uppercase fw-bold"><?= _("Nom & Prénoms") ?></label>
<label class="form-label small text-uppercase fw-bold"><?= _("Nom & Prénoms") ?></label>
<div class="input-group">
<span class="input-group-text"><i class="fas fa-id-card"></i></span>
<input type="text" class="form-control bg-white" value="<?= $this->nettoyer($adherent['nom']) ?> <?= $this->nettoyer($adherent['prenoms']) ?>" readonly>
</div>
</div>
<div class="col-md-4">
<label class="form-label small text-muted text-uppercase fw-bold"><?= _("Collège") ?></label>
<label class="form-label small text-uppercase fw-bold"><?= _("Collège") ?></label>
<input type="text" class="form-control bg-white" value="<?= $this->nettoyer($adherent['libelleCollege']) ?>" readonly>
</div>
<div class="col-md-4">
<label class="form-label small text-muted text-uppercase fw-bold"><?= _("Contact") ?></label>
<label class="form-label small text-uppercase fw-bold"><?= _("Contact") ?></label>
<div class="input-group">
<span class="input-group-text"><i class="fas fa-phone"></i></span>
<input type="text" class="form-control bg-white" value="<?= $this->nettoyer($adherent['telephonePortable']) ?>" readonly>
</div>
</div>
<div class="col-md-4">
<label class="form-label small text-muted text-uppercase fw-bold"><?= _("E-mail") ?></label>
<label class="form-label small text-uppercase fw-bold"><?= _("E-mail") ?></label>
<input type="email" class="form-control bg-white" value="<?= $this->nettoyer($adherent['email']) ?>" readonly>
</div>
<div class="col-md-8">
<label class="form-label small text-muted text-uppercase fw-bold"><?= _("Localisation") ?></label>
<label class="form-label small text-uppercase fw-bold"><?= _("Localisation") ?></label>
<div class="input-group">
<span class="input-group-text"><i class="fas fa-map-marker-alt"></i></span>
<input type="text" class="form-control bg-white" value="<?= $this->nettoyer($adherent['pays']) ?> / <?= $this->nettoyer($adherent['ville']) ?> / <?= $this->nettoyer($adherent['localite']) ?>" readonly>
<input type="text" class="form-control" value="<?= $this->nettoyer($adherent['pays']) ?> / <?= $this->nettoyer($adherent['ville']) ?> / <?= $this->nettoyer($adherent['localite']) ?>" readonly>
</div>
</div>
</div>