2809 |
rexy |
1 |
<!DOCTYPE html>
|
|
|
2 |
<html lang="en">
|
|
|
3 |
<head>
|
|
|
4 |
<title>Network Traffic</title>
|
|
|
5 |
<meta charset="UTF-8">
|
|
|
6 |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
7 |
|
|
|
8 |
<!-- Bootstrap CSS -->
|
|
|
9 |
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
|
|
|
10 |
|
|
|
11 |
<!-- Custom CSS -->
|
|
|
12 |
<link rel="stylesheet" href="./assets/css/style.css">
|
|
|
13 |
|
|
|
14 |
</head>
|
|
|
15 |
|
|
|
16 |
<body>
|
|
|
17 |
<nav class="navbar sticky-top navbar-light bg-light">
|
|
|
18 |
<div class="container">
|
|
|
19 |
<a class="navbar-brand" href="#">Network Traffic ({$current_interface})</a>
|
|
|
20 |
|
|
|
21 |
<div class="dropdown">
|
|
|
22 |
<button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
|
23 |
Interface Selection
|
|
|
24 |
</button>
|
|
|
25 |
|
|
|
26 |
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
|
|
|
27 |
{foreach from=$interface_list item=value}
|
|
|
28 |
<a class="dropdown-item" href="?i={$value}">{$value}</a>
|
|
|
29 |
{/foreach}
|
|
|
30 |
</div>
|
|
|
31 |
</div>
|
|
|
32 |
</div>
|
|
|
33 |
</nav>
|