Add new WiFi menu

This commit is contained in:
2021-12-29 02:13:10 +01:00
parent 86e5e9cf0e
commit 3f6eeca8d6
53 changed files with 1760 additions and 673 deletions

View File

@ -207,6 +207,16 @@ esp_err_t webserver_newSettings_handler(httpd_req_t *req)
HtmlTag buttonTag{"button", "type=\"submit\"", body};
body += "Save";
}
{
HtmlTag divTag{"div", "class=\"form-table-cell\"", body};
if (config.touched())
{
HtmlTag buttonTag{"span", "style=\"color: red;\"", body};
body += "Touched";
}
}
});
}
}