12345678910111213141516171819202122 |
- <!DOCTYPE html>
- <html>
- <head>
- <link rel="stylesheet" href="max80.css" />
- <title class="update">MAX80: Update</title>
- <script src="max80.js"></script>
- </head>
- <body>
- <script>inc("head.html")</script>
- <h1 class="update">Update</h1>
- <form id="upload" action="sys/fwupdate" enctype="multipart/form-data"
- method="post" onsubmit="uploadfile()">
- <fieldset class="firmware">
- <legend>Firmware</legend>
- <input type="file" name="file" hidden accept=".fw" onchange="uploadfile()" />
- <button class="submit" type="submit" id="upload.start">Update firmware</button>
- <progress value="0"></progress>
- </fieldset>
- <output></output>
- </form>
- </body>
- </html>
|