popup.html 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <!doctype html>
  2. <html lang=en_US>
  3. <head>
  4. <title>bmux</title>
  5. <script src="assets/jquery-1.10.2.js"></script>
  6. <link rel="stylesheet" href="assets/jquery-ui-1.10.4.css">
  7. <link href="assets/style.css" rel="stylesheet">
  8. <script src="popup.js"></script>
  9. </head>
  10. <body>
  11. <div id="container">
  12. <header>
  13. <a href="bmux.html" target="_blank">manage sessions</a>
  14. <h1>bmux</h1>
  15. <a href="options.html" target="_blank">options</a>
  16. </header>
  17. <main>
  18. <section>
  19. <i>Current session...</i>
  20. <h3 id="current_session_name"></h3>
  21. <input type="text" id="input_session" /><button id="btn_confirmSave"><i class="fa fa fa-check"></i></button>
  22. <p id ="msg_alert">Enter a session name</p>
  23. </section>
  24. <section>
  25. </section>
  26. <section id="table_container">
  27. <table id="sessions_table"><tbody></tbody></table>
  28. </section>
  29. <button id="btn_clear">Clear all sessions</button>
  30. </main>
  31. </div>
  32. </body>
  33. </html>