9a06c748c0
do not reboot after settings set -> add reboot button ota not really working yet
24 lines
588 B
HTML
24 lines
588 B
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
|
|
<title>Saved Settings</title>
|
|
<script>
|
|
function OpenMain()
|
|
{
|
|
window.open("/","_self");
|
|
}
|
|
function OpenReboot()
|
|
{
|
|
window.open("/reset","_self");
|
|
}
|
|
|
|
</script>
|
|
</head><body>
|
|
<div align="center">
|
|
<h2>Settings saved.</h2>
|
|
<p>If you made changes to WiFi configuration, please reboot.</p><br>
|
|
<input type="button" name="BACK" value="Close" onclick="OpenMain()">
|
|
<input type="button" name="BACK" value="Reboot" onclick="OpenReboot()">
|
|
</div></body>
|
|
</html>
|
|
|