71 lines
2.4 KiB
HTML
71 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="stylesheet" href="./style.css" />
|
|
<link rel="shortcut icon" href="./logo.png" type="image/x-icon" />
|
|
<title>Tiny NOT setup</title>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<h1 data-symbol="🏠">Start</h1>
|
|
|
|
<section class="align-center">
|
|
<h2 data-symbol="🛈">Status</h2>
|
|
<table>
|
|
<thead>
|
|
<th>Field</th>
|
|
<th>Value</th>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>Uptime</td>
|
|
<td>
|
|
<time datetime="2025-07-21T21:55">23:55</time>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</section>
|
|
|
|
<section class="align-center">
|
|
<h2 data-symbol="🖫">Stored</h2>
|
|
<div>
|
|
<ol>
|
|
<li>
|
|
<span>stored SSID - stored BSSID - RSSI</span>
|
|
<div class="list-actions">
|
|
<a href="/wifi/edit?id=1">Edit 🛠</a>
|
|
<a href="/wifi/forget?id=1">Forget</a>
|
|
</div>
|
|
</li>
|
|
</ol>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="align-center">
|
|
<h2 data-symbol="⦿">Scan results</h2>
|
|
<div class="section-actions">
|
|
<a href="/wifi/scan">Scan Again ↺</a>
|
|
<a href="/wifi/add">Add manually 🖆</a>
|
|
</div>
|
|
<div>
|
|
<ol>
|
|
<li
|
|
><span>SSID - BSSID - RSSI</span>
|
|
<div class="list-actions">
|
|
<a href="/wifi/add?id=1">Add +</a>
|
|
</div>
|
|
</li>
|
|
</ol>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
<footer>
|
|
<span>Tiny NOT version 0.1</span>
|
|
</footer>
|
|
<script type="text/javascript" src="./app.js"></script>
|
|
</body>
|
|
</html>
|