<?php
// Suppose que $s est un objet Sondage avec getId(), getTitre(), getDescription(), getCreatedAt()
$id          = htmlspecialchars($s->getId_sondage(), ENT_QUOTES, 'UTF-8');
$titre       = htmlspecialchars($s->getTitre(), ENT_QUOTES, 'UTF-8');
$description = nl2br(htmlspecialchars($s->getDescription(), ENT_QUOTES, 'UTF-8'));
$createdAt   = htmlspecialchars($s->getddd(), ENT_QUOTES, 'UTF-8');
?>

<div class="card shadow-sm mb-3">
  <div class="card-body">
    <h5 class="card-title mb-2"><?php echo $titre; ?></h5>
    <?php if (!empty($createdAt)) : ?>
      <p class="text-muted small mb-2">Créé le <?php echo $createdAt; ?></p>
    <?php endif; ?>
    <?php if (!empty($description)) : ?>
      <p class="card-text"><?php echo $description; ?></p>
    <?php endif; ?>

    <div class="d-flex gap-2">
      <a class="btn btn-primary btn-sm"
         href="index.php?uc=loged/sondage&mode=response&sondage=<?php echo $id; ?>">
         Répondre
      </a>
      <!-- Exemple d’autre action éventuelle -->
      <!-- <a class="btn btn-outline-secondary btn-sm" href="...">Détails</a> -->
    </div>
  </div>
</div>
