Added the webserver and the wifi handling

This commit is contained in:
2026-03-24 15:03:02 +01:00
parent 8bebe5228b
commit 67f2baabbb
14 changed files with 543 additions and 39 deletions

20
fs/index.html Normal file
View File

@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Konfiguration</title>
</head>
<body>
<h1>WLAN Einstellungen</h1>
<form action="/config" method="post">
<label>SSID:</label>
<input type="text" name="ssid">
<br>
<label>Passwort:</label>
<input type="password" name="password">
<br>
<input type="submit" value="Speichern">
</form>
</body>
</html>