mirror of
https://github.com/ZeJMaN/LBCAlerte_ynh.git
synced 2025-06-07 13:05:30 +02:00
16 lines
614 B
PHTML
16 lines
614 B
PHTML
<form action="" method="post">
|
|
<fieldset>
|
|
<legend>Supprimer cette annonce ?</legend>
|
|
<ul>
|
|
<li>Titre : <?php echo htmlspecialchars($ad->getTitle()); ?></li>
|
|
<li>Url : <?php echo htmlspecialchars($ad->getLink()); ?></li>
|
|
</ul>
|
|
<p>
|
|
<input type="hidden" name="id" value="<?php echo $_GET["id"]; ?>" />
|
|
<input type="submit" value="Oui" style="font-weight: bold;" />
|
|
| <a href="?mod=annonce<?php
|
|
echo $referer == "view" ? '&a=view&id='.$ad->getId() : ''; ?>">Non</a>
|
|
</p>
|
|
</fieldset>
|
|
</form>
|