123456789101112131415161718192021222324252627282930 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>Flasher.js</title>
- <!-- Stylesheets -->
- <link rel="stylesheet" href="css/style.css">
- </head>
- <body>
- <label for="ports">Select Port:</label>
- <select title="Select a Serial/COM Port" id="ports" name="ports" class="form-control" disabled>
- </select>
- <label for="manifests">Select Binaries to Flash:</label>
- <select title="Select Binaries to Flash" id="manifests" name="manifests" class="form-control" disabled>
-
- </select>
-
- <button id="flash-button" class="btn btn-primary pull-right" disabled>
- Flash!
- </button>
- <div id="progress"></div>
- <footer>
- <span id="status"></span>
- </footer>
- <!-- Javascript -->
- <script src="js/app.js" charset="utf-8"></script>
- </body>
- </html>
|