index.html 824 B

123456789101112131415161718192021222324252627282930
  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. <label for="ports">Select Port:</label>
  10. <select title="Select a Serial/COM Port" id="ports" name="ports" class="form-control" disabled>
  11. </select>
  12. <label for="manifests">Select Binaries to Flash:</label>
  13. <select title="Select Binaries to Flash" id="manifests" name="manifests" class="form-control" disabled>
  14. </select>
  15. <button id="flash-button" class="btn btn-primary pull-right" disabled>
  16. Flash!
  17. </button>
  18. <div id="progress"></div>
  19. <footer>
  20. <span id="status"></span>
  21. </footer>
  22. <!-- Javascript -->
  23. <script src="js/app.js" charset="utf-8"></script>
  24. </body>
  25. </html>