index.html 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Powerbox Web Server</title>
  5. <script src="script.js"></script>
  6. <link rel="stylesheet" href="style.css">
  7. </head>
  8. <body onload="initialLoad()">
  9. <div class="topnav">
  10. <span>
  11. <h1>Powerbox Web Server
  12. <button class="toggle_button"
  13. style="float: right; background-color: red; margin-bottom: 15px; margin-right: 10px;"
  14. onclick="turnOffAll()">Abort</button>
  15. </h1>
  16. </span>
  17. <ul>
  18. <li><a href="/wifi.html">Wifi</a></li>
  19. </ul>
  20. </div>
  21. <section class="layout" id="content">
  22. </section>
  23. <button class="toggle_button" style="background-color: red; margin-top: 20px;" onclick="turnOffAll()">Turn off
  24. all</button>
  25. <!-- the properties window -->
  26. <div id="propertiesWindow" class="modal">
  27. <div class="modal-content">
  28. <div class="topnav">
  29. <h3 class="title">Power outlet properties
  30. <span onclick="closePropertiesWindow()" class="close">&times;</span>
  31. </h3>
  32. </div>
  33. <p id="propertiesContent" class="card"></p>
  34. </div>
  35. </div>
  36. </body>
  37. </html>