You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
2.3 KiB
84 lines
2.3 KiB
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<script type="text/javascript" src="/js/jquery-2.1.1.min.js"></script>
|
|
<script type="text/javascript" src="/js/my.js"></script>
|
|
</script>
|
|
</head>
|
|
<body>
|
|
Expiration : <?= $infos['expires']->format('H:i d.m.Y') ?><br>
|
|
Traffic Restant : <?= intval($infos['trafficleft_gigabytes']) ?>Go (<?= intval($infos['fairuse_left'] * 100) ?>%)<br>
|
|
<textarea id="urls" name="urls" style="margin: 0px; width: 985px; height: 401px;"></textarea><br>
|
|
<input type="button" id="sub" name="sub" value="submit" onclick="javascript:subURL();"><br>
|
|
Liste des fichiers a traiter :<br>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Date</td>
|
|
<th>Filename</td>
|
|
<th>IP</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
foreach ($listAdded as $result) {
|
|
?>
|
|
<tr>
|
|
<td><?= $result['timestamp']; ?></td>
|
|
<td><?= $result['filename']; ?></td>
|
|
<td><?= $result['event'][0]['ip']; ?></td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
Liste des fichiers en cours :<br>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Date</td>
|
|
<th>Filename</td>
|
|
<th>IP</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
foreach ($listDownloading as $result) {
|
|
?>
|
|
<tr>
|
|
<td><?= $result['timestamp']; ?></td>
|
|
<td><?= $result['filename']; ?></td>
|
|
<td><?= $result['event'][0]['ip']; ?></td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
Liste des fichiers terminés :<br>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Date</td>
|
|
<th>Filename</td>
|
|
<th>IP</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
foreach ($listDownloaded as $result) {
|
|
?>
|
|
<tr>
|
|
<td><?= $result['timestamp']; ?></td>
|
|
<td><?= $result['filename']; ?></td>
|
|
<td><?= $result['event'][0]['ip']; ?></td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
|
|
</body>
|
|
</html>
|