mirror of https://github.com/jeelabs/esp-link.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
934 B
10 lines
934 B
<!doctype html><html><head><title>esp-link</title><link rel=stylesheet href="/pure.css"><link rel=stylesheet href="/style.css"><meta name=viewport content="width=device-width, initial-scale=1"><script src="/ui.js"></script></head><body><div id=layout><div id=main><div class=header><h1>Web Server</h1></div><div class=content><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" onSubmit="return onSubmit()">The custom web page to upload: <input type=file name=webpage multiple><input type=submit name=submit value=Submit></form></div></div><script>
|
|
var allowSubmit = true;
|
|
|
|
function onSubmit() {
|
|
setTimeout(function() {
|
|
window.location.reload();
|
|
}, 1000);
|
|
return true;
|
|
}
|
|
</script></body></html> |