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.

87 lines
4.4 KiB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Settings</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. <meta charset="utf-8">
  12. <script src="loadMenu.js" defer></script>
  13. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/css/bootstrap.min.css">
  14. <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
  15. <script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/js/bootstrap.min.js"></script>
  16. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css">
  17. <link href='main.css' rel='stylesheet' type='text/css'>
  18. <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.15.0/esm/popper.js" type="module"></script>
  19. <script src="settings.js" defer></script>
  20. <link rel="stylesheet" href="colors.css">
  21. </head>
  22. <body>
  23. <div id="navigation"></div>
  24. <section id="form-section">
  25. <div class="container">
  26. <div class="row">
  27. <div class="col-lg-6 offset-lg-3">
  28. <div class="py-5 mt-3">
  29. <!-- <div class="bg-ternary rounded"> -->
  30. <div class="card text-white bg-ternary card-form rounded mx-auto shadow-lg p-3 mb-5">
  31. <h2 class="card-header text-center">Change Settings</h2>
  32. <div class="card-body rounded">
  33. <form id="myForm">
  34. <div class="form-group">
  35. <label>Select Ballast:</label>
  36. <select class="form-control" id="myBallasts" name="ballast">
  37. <option value = "1">Ballast #1</option>
  38. <option value = "2">Ballast #2</option>
  39. <option value = "3">Ballast #3</option>
  40. </select>
  41. </div>
  42. <div class="form-group">
  43. <label for="">Enter start hour:</label>
  44. <input class="form-control" type="text" name="shour" placeholder="Hour" required>
  45. </div>
  46. <div class="form-group">
  47. <label for="">Enter start minute:</label>
  48. <input class="form-control" type="text" name="smin" placeholder="Minute" required>
  49. </div>
  50. <div class="form-group">
  51. <label for="">Enter amount of time to fade in:</label>
  52. <input class="form-control" type="text" name="fadePeriod" placeholder="Fade Period" required>
  53. <small class="form-text text-white">Must be a whole number</small>
  54. </div>
  55. <div class="form-group">
  56. <label for="">Enter end hour:</label>
  57. <input class="form-control" type="text" name="ehour" placeholder="Hour" required>
  58. </div>
  59. <div class="form-group">
  60. <label for="">Enter start minute:</label>
  61. <input class="form-control" type="text" name="emin" placeholder="Minute" required>
  62. </div>
  63. <div class="form-group">
  64. <button class="button form-control">Submit</button>
  65. </div>
  66. </form>
  67. </div>
  68. <!-- </div> -->
  69. </div>
  70. </div>
  71. </div>
  72. </div>
  73. </div>
  74. </section>
  75. <script type="text/javascript">
  76. </script>
  77. </body>
  78. </html>