1234567891011121314151617181920212223242526272829303132333435 |
- <!doctype html>
- <html lang=en_US>
- <head>
- <title>bmux</title>
- <script src="assets/jquery-1.10.2.js"></script>
- <link rel="stylesheet" href="assets/jquery-ui-1.10.4.css">
- <link href="assets/style.css" rel="stylesheet">
- <script src="popup.js"></script>
- </head>
- <body>
- <div id="container">
- <header>
- <a href="bmux.html" target="_blank">manage sessions</a>
- <h1>bmux</h1>
- <a href="options.html" target="_blank">options</a>
- </header>
- <main>
- <section>
- <i>Current session...</i>
- <h3 id="current_session_name"></h3>
- <input type="text" id="input_session" /><button id="btn_confirmSave"><i class="fa fa fa-check"></i></button>
- <p id ="msg_alert">Enter a session name</p>
- </section>
- <section>
- </section>
- <section id="table_container">
- <table id="sessions_table"><tbody></tbody></table>
- </section>
- <button id="btn_clear">Clear all sessions</button>
- </main>
- </div>
- </body>
- </html>
|