25 lines
522 B
HTML
25 lines
522 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head><meta charset="utf-8"></head>
|
|
<body style="background-color: #1C304A;">
|
|
<h2>Main</h2>
|
|
<div id="wifi"></div>
|
|
<a href="/wifi">WiFi Setup</a>
|
|
|
|
<script>
|
|
async function loadStatus() {
|
|
const res = await fetch("/api/status");
|
|
const st = await res.json();
|
|
let html = "WiFi: " + st.status;
|
|
if (st.status === "connected") {
|
|
html += `<br>${st.ssid} (${st.ip})`;
|
|
}
|
|
document.getElementById("wifi").innerHTML = html;
|
|
}
|
|
setInterval(loadStatus, 3000);
|
|
loadStatus();
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|