index_dummy.html 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Powerbox Web Server</title>
  5. <script src="script_dummy.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. </div>
  18. <section class="layout" id="content">
  19. </section>
  20. <button class="toggle_button" style="background-color: red; margin-top: 20px;" onclick="turnOffAll()">Turn off
  21. all</button>
  22. <!-- the properties window -->
  23. <div id="propertiesWindow" class="modal">
  24. <div class="modal-content">
  25. <div class="topnav">
  26. <h3 class="title">Power outlet properties
  27. <span onclick="closePropertiesWindow()" class="close">&times;</span>
  28. </h3>
  29. </div>
  30. <p id="propertiesContent" class="card"></p>
  31. </div>
  32. </div>
  33. </body>
  34. </html>