ca3c4bb125
notification receive and send buttons work settings iframe works implemented HSB partially
18 lines
444 B
HTML
18 lines
444 B
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
|
|
<title>Saved Settings</title>
|
|
<script>
|
|
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" value="Reboot" onclick="OpenReboot()">
|
|
</div></body>
|
|
</html>
|
|
|