iphistory/web/index.html
2024-09-05 16:56:08 +02:00

31 lines
1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>IP History</title>
<link rel="stylesheet" href="style.css">
<script defer src="script.js"></script>
</head>
<body>
<h1><a href="/">IP History</a></h1>
<div class="controls">
<button class="export" id="exportBtn">Export to CSV</button>
<input type="text" id="searchBar" class="search-bar" placeholder="Search IP history..." autocomplete="off">
</div>
<table id="ipTable">
<thead>
<tr>
<th id="sortTimestamp">Timestamp</th>
<th id="sortIPv4">IPv4 Address</th>
<th id="sortIPv6">IPv6 Address</th>
</tr>
</thead>
<tbody></tbody>
</table>
<div class="pagination" id="pagination">
<button id="prevBtn" disabled>&laquo; Prev</button>
<button id="nextBtn" disabled>Next &raquo;</button>
</div>
</body>
</html>