production/Vue/Ajaxhistobannissement/index.php
2025-12-01 16:12:12 +00:00

28 lines
1.0 KiB
PHP
Executable File

<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:8pt;">
<thead>
<tr>
<th style="text-align:center"> <?= _("Login") ?> </th>
<th style="text-align:center"> <?= _("Date") ?> </th>
<th style='text-align:center'> <?= _("IP") ?> </th>
<th style='text-align:center'> <?= _("Tentatives") ?> </th>
</tr>
</thead>
<tbody>
<?php foreach ($logconnexions as $logconnexion):
$ipConnexion = $logconnexion['ipConnexion'];
?>
<tr valign="top">
<td align='center'> <?= $this->nettoyer($logconnexion['login']) ?> </td>
<td align='center'> <?= dateheureLang($this->nettoyer($logconnexion['heureConnexion'])) ?> </td>
<td class="text-center">
<button style='font-size:8pt;' type="button" onclick="javascript:trouve_coordonnees_geo_ip('<?= $ipConnexion; ?>');"> <?= $ipConnexion; ?> </button>
</td>
<td align='center'> <?= format_N($this->nettoyer($logconnexion['nbTentative'])) ?> </td>
</tr>
<?php endforeach; ?>
</tbody>
</table>