The esp8266 portion of the project
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.

77 lines
3.1 KiB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Manual Mode</title>
  5. <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon-180x180.png">
  6. <link rel="icon" type="image/png" sizes="144x144" href="/favicon-144x144.png">
  7. <link rel="icon" type="image/png" sizes="48x48" href="/favicon.ico">
  8. <link rel="manifest" href="/manifest.json">
  9. <meta name="theme-color" content="#00878f">
  10. <meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport'>
  11. <!-- <script src="include.js" type="text/javascript"></script> -->
  12. <meta charset="utf-8">
  13. <!-- <script src="jquery-3.4.1.min.js"></script> -->
  14. <script src="loadMenu.js" defer></script>
  15. <link href='main.css' rel='stylesheet' type='text/css'>
  16. <!-- <link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet"> -->
  17. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/css/bootstrap.min.css">
  18. <link rel="stylesheet" href="colors.css">
  19. <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
  20. <!-- <link rel="stylesheet" href="bootstrap.min.css"> -->
  21. <script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/js/bootstrap.min.js"></script>
  22. <!-- <script src="bootstrap.min.js"></script> -->
  23. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css">
  24. <link href='main.css' rel='stylesheet' type='text/css'>
  25. <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.15.0/esm/popper.js" type="module"></script>
  26. </head>
  27. <body>
  28. <div id="navigation"></div>
  29. <center>
  30. <header>
  31. <h1> Manual Mode </h1>
  32. </header>
  33. </center>
  34. <form action="manualMode.html" method="GET">
  35. <center>
  36. <div class="shadow">
  37. <!-- <iframe src="menu.html" width="90%"></iframe> -->
  38. <table class="tbl">
  39. <tr>
  40. <td colspan="3">
  41. <label>Manual mode?</label>
  42. </td>
  43. </tr>
  44. <tr>
  45. <td>
  46. <input type="radio" name="manual" value="True"> Yes
  47. </td>
  48. <td>
  49. <input type="radio" name="manual" value="False" checked> No
  50. </td>
  51. </tr>
  52. <tr>
  53. <td colspan="2">
  54. <p style="margin:8px 0px" align="center"><button class="button">Submit</button></p>
  55. </td>
  56. </tr>
  57. </table>
  58. <!-- <div class="content">
  59. <label>Manual mode?</label>
  60. <input type="radio" name="manual" value="True"> Yes
  61. <input type="radio" name="manual" value="False" checked> No <br>
  62. <p style="margin:8px 0px"><button class="button">Submit</button></p><br>
  63. </div> -->
  64. </div>
  65. </center>
  66. </form>
  67. </body>
  68. </html>