add bed cooler project.

This commit is contained in:
2026-06-28 13:15:53 -05:00
commit 0f2a03044c
46 changed files with 3597 additions and 0 deletions

27
data/www/setup.html Normal file
View File

@@ -0,0 +1,27 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>ESP32-C3 first-run setup</title>
<link rel="stylesheet" href="/css/setup.css">
<script defer src="/js/setup.js"></script>
</head>
<body>
<div class="top">ESP32-C3 first-run setup</div>
<main>
<section class="box">
<h2>Network and admin setup</h2>
<label>WiFi network</label>
<select id="ssid"></select>
<label>WiFi password</label>
<input id="wifiPass" type="password" autocomplete="off">
<label>Admin username</label>
<input id="admin" value="admin">
<label>Admin password</label>
<input id="adminPass" type="password" autocomplete="new-password">
<button id="saveSetup">Save and restart</button>
<pre id="out"></pre>
</section>
</main>
</body>
</html>