Autorefresh page after uploading

pull/193/head
Karai Csaba 9 years ago committed by Thorsten von Eicken
parent ad34095bfa
commit 5f56676e4b
  1. 13
      html/web-server.html

@ -7,7 +7,7 @@
<p>User defined web pages can be uploaded to esp-link. This is useful if esp-link acts as a web server while MCU provides
the measurement data.</p>
<form method="post" action="web-server/upload" name="submit" enctype="multipart/form-data">
<form method="post" action="web-server/upload" name="submit" enctype="multipart/form-data" onSubmit="return onSubmit()">
The custom web page to upload: <input type="file" name="webpage">
<input type="submit" name="submit" value="Submit">
</form>
@ -15,4 +15,15 @@
</div>
</div>
<script>
var allowSubmit = true;
function onSubmit() {
setTimeout(function() {
window.location.reload();
}, 1000);
return true;
}
</script>
</body></html>

Loading…
Cancel
Save