index.html 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <!--
  2. Copyright (c) 2021 Clementine Computing LLC.
  3. This file is part of PopuFare.
  4. PopuFare is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU Affero General Public License as published by
  6. the Free Software Foundation, either version 3 of the License, or
  7. (at your option) any later version.
  8. PopuFare is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU Affero General Public License for more details.
  12. You should have received a copy of the GNU Affero General Public License
  13. along with PopuFare. If not, see <https://www.gnu.org/licenses/>.
  14. -->
  15. <meta charset='utf-8'/>
  16. <html>
  17. <head>
  18. <link rel="stylesheet" href="css/piustyles.css">
  19. <link rel="stylesheet" href="css/grids.css">
  20. </head>
  21. <body id='body' >
  22. <div id='dim_overlay' style='z-index:1001;'></div>
  23. <!--
  24. an optional clock display under 'quick dim' mode
  25. -->
  26. <div id='ui_dimclock' style='z-index:1000; display:none; background:#000000; width:120vw; height:120vh; margin-left:-2vw; margin-top:-2vh;'>
  27. <div style='width:100%; height:100%;'>
  28. <div class='pure-g row' style='width:100%; height:100%;' >
  29. <div class='pure-u-1-6 col' style='position:absolute; top:10vh; margin-left:10vw;'>
  30. <button onmousedown='_beep();' class='bdropdark bkeyHuge' id='ui_dimclock_btn'>
  31. <span id='ui_dimclock_clock' class='bkeyTime' style='font-size:16vh;'> ok </span> <br>
  32. <span id='ui_dimclock_date' class='bkeyDate' style='font-size:8vh;'> ok </span> <br>
  33. </button>
  34. </div>
  35. </div>
  36. </div>
  37. </div>
  38. <div id='ui_test'></div>
  39. <!-- ************************* -->
  40. <!-- ****** ******* -->
  41. <!-- ****** Watchdog ******* -->
  42. <!-- ****** ******* -->
  43. <!-- ************************* -->
  44. <div id='ui_watchdog' style='display:none;'>
  45. <div style='width:100%; height:100%;'>
  46. <div class='pure-g row' style='width:100%; height:100%;' >
  47. <div class='pure-u-1-6 col' style=' position:absolute; top:10vh; margin-left:10vw; '>
  48. <button onmousedown='_beep();' class='bdropinp bkeyHuge' id='ui_watchdog_btn'>Watchdog Timer Expired! <br> Press Button to Reset UI </button>
  49. </div>
  50. </div>
  51. </div>
  52. </div>
  53. <!-- ************************* -->
  54. <!-- ****** ******* -->
  55. <!-- ****** main ******* -->
  56. <!-- ****** ******* -->
  57. <!-- ************************* -->
  58. <!-- <div id='ui_main' style='display:none;'> -->
  59. <div id='ui_main'>
  60. <div class='pure-g'>
  61. <div class='pue-u'>
  62. <div class='pure-g row'>
  63. <div class='pure-u-1-12 col'> </div>
  64. <div class='pure-u-5-6 col'>
  65. <div class='bdisp' style='color:#999a99; font-size:8vh;' id='ui_message_status' >00/00 00:00 AM READY</div>
  66. </div>
  67. <div class='pure-u-1-12 col'></div>
  68. </div>
  69. <br>
  70. <div class='pure-g row'>
  71. <div class='pure-u-1-12 col'> </div>
  72. <div class='pure-u-5-6 col'>
  73. <div class='bdisp' id='ui_message_cardinfo'>--- ---- -- ----- </div>
  74. </div>
  75. <div class='pure-u-1-12 col'></div>
  76. </div>
  77. <div class='pure-g row' style='height:55vh;'>
  78. <img id='ui_main_vidfeed' style='height:50vh; margin-left: 16px;' src='' ></img>
  79. </div>
  80. </div>
  81. </div>
  82. <div id="ui_message_datetime" class='datetimebar'>
  83. 2020-04-11 09:50 AM
  84. </div>
  85. </div> <!-- ui_main -->
  86. <!-- ********************** -->
  87. <!-- ****** ******* -->
  88. <!-- ****** END ******* -->
  89. <!-- ****** ******* -->
  90. <!-- ********************** -->
  91. </body>
  92. <script src='js/moment.js'></script>
  93. <script src='js/jquery.js'></script>
  94. <script src='js/jquery-ui.js'></script>
  95. <script src='js/piu_ui_site_specific.js'></script>
  96. <script src='js/piu_ui.js'></script>
  97. </html>