28 lines
916 B
PHP
Executable File
28 lines
916 B
PHP
Executable File
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:10pt;">
|
|
<tbody>
|
|
<tr valign="top">
|
|
<th style='text-align:center'> <?= _("Historique bannissement IP") ?> </th>
|
|
<td align='center'> <?= $ipConnexion ?> </td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:10pt;">
|
|
<thead>
|
|
<tr>
|
|
<th style="text-align:center"> <?= _("Date") ?> </th>
|
|
<th style="text-align:center"> <?= _("Login") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($logconnexions as $logconnexion):
|
|
?>
|
|
<tr valign="top">
|
|
<td align='center'> <?= dateheureLang($this->nettoyer($logconnexion['heureConnexion'])) ?> </td>
|
|
<td align='center'> <?= $this->nettoyer($logconnexion['login']) ?> </td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|