123456789101112131415161718192021222324252627282930313233343536373839 |
- <!DOCTYPE html>
- <html>
-
- <head>
- <meta charset="utf-8" />
- <title>Demo Application</title>
- </head>
-
- <body>
- <div class="sign-in" style="margin:10px">
- <label for="account">Account: </label>
- <input type="text" id="account_id" name="account">
- <button id="login_id">Login</button>
- </div>
-
- <div style="margin: 10px">
- <label for="login_id">Init meeting with participants:</label>
- <input type="text" id="inp_participants" name="meeting">
- <button id="start_meeting_id">Start Meeting</button>
- </div>
-
- <div for="meeting_id_label" style="margin: 10px">
- Meeting Id: <span id="meeting_id_label">...</span>
- </div>
-
- <div style="margin: 10px">
- <label for="meeting_id">Meeting Id: </label>
- <input type="text" id="inp_meeting_id" name="meeting">
- <button id="join_meeting_id">Join Meeting</button>
- </div>
-
- <div for="secret_id_label" style="margin: 10px">
- Secret: <span id="secret_id_label">...</span>
- </div>
- </body>
-
- </html>
-
- <script src="main.js"></script>
|