reboot_page.html 670 B

12345678910111213141516171819202122232425262728293031323334
  1. <html><head>
  2. <title>jomjol - AI on the edge</title>
  3. <meta charset="utf-8">
  4. <meta name="viewport" content="width=device-width, initial-scale=1">
  5. <script type="text/javascript">
  6. //<![CDATA[
  7. //]]>
  8. </script>
  9. </head>
  10. <body>
  11. <table class="fixed" border="0">
  12. <tr>
  13. <td>
  14. <button id="reboot" type="button" onclick="doReboot()">Reboot</button>
  15. </td>
  16. </tr>
  17. </table>
  18. <script>
  19. function doReboot() {
  20. if (confirm("Are you sure you want to reboot the ESP32?")) {
  21. var stringota = "/reboot";
  22. window.location = stringota;
  23. window.location.href = stringota;
  24. window.location.assign(stringota);
  25. window.location.replace(stringota);
  26. }
  27. }
  28. </script>
  29. </body></html>