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.
29 lines
804 B
29 lines
804 B
<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>
|
|
|