index.html 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Flasher.js</title>
  5. <!-- Stylesheets -->
  6. <link rel="stylesheet" href="css/style.css">
  7. </head>
  8. <body>
  9. <div id="app">
  10. <div id="logo">
  11. <svg version="1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
  12. viewBox="0 0 180 180" style="enable-background:new 0 0 180 180;" xml:space="preserve">
  13. <style type="text/css">
  14. .st0{fill:none;stroke:url(#SVGID_1_);stroke-width:3;stroke-miterlimit:10;}
  15. .st1{fill:none;stroke:#FFAB91;stroke-width:3;stroke-miterlimit:10;}
  16. .st2{fill:none;stroke:#FFD600;stroke-width:3;stroke-miterlimit:10;}
  17. .bg{fill:none;stroke:#EEEEEE;stroke-width:3;stroke-miterlimit:10;}
  18. </style>
  19. <g>
  20. <title>Flasher.js</title>
  21. <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="49" y1="145" x2="128" y2="145" gradientTransform="matrix(1 0 0 1 0 -55)">
  22. <stop offset="0" style="stop-color:#FFAB91"/>
  23. <stop offset="1" style="stop-color:#FFD600"/>
  24. </linearGradient>
  25. <polyline class="st0" points="52,28 63,28 51,93 57,93 72,4 78,4 62,93 68,93 78,38 84,38
  26. 73,93 79,93 86,55 91,55 69,176 75,176 91,88 97,88 85,154 90,154 102,88 108,88
  27. 100,136 105,136 114,88 119,88 117,99 128,99"/>
  28. <circle class="st1" cx="49" cy="28" r="3"/>
  29. <circle class="st2" cx="131" cy="100" r="3"/>
  30. </g>
  31. </svg>
  32. </div>
  33. <div id="form">
  34. <div class="field">
  35. <label for="ports">Select Port:</label><br>
  36. <select title="Select a Serial/COM Port" id="ports" name="ports" disabled>
  37. </select>
  38. </div>
  39. <div class="field">
  40. <label for="manifests">Select Binaries to Flash:</label><br>
  41. <select title="Select Binaries to Flash" id="manifests" name="manifests" disabled>
  42. </select>
  43. </div>
  44. <div class="button">
  45. <button id="flash-button" disabled>
  46. Flash!
  47. </button>
  48. </div>
  49. </div>
  50. </div>
  51. <footer><span id="status"></span></footer>
  52. <!-- Javascript -->
  53. <script src="js/app.js" charset="utf-8"></script>
  54. </body>
  55. </html>