You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.html 797B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>Demo Application</title>
  6. </head>
  7. <body>
  8. <div>
  9. <label for="account">Account: </label>
  10. <input type="text" id="account_id" name="account"><br><br>
  11. <input type="submit" value="Login" id="login_id"><br><br>
  12. <label for="login_id">Init meeting with participants:</label>
  13. <input type="text" id="inp_participants" name="meeting"><br><br>
  14. <input type="submit" value="Start Meeting" id="start_meeting_id"><br><br>
  15. <label for="meeting_id">Meeting Id: </label>
  16. <input type="text" id="inp_meeting_id" name="meeting"><br><br>
  17. <input type="submit" value="Join Meeting" id="join_meeting_id"><br><br>
  18. </div>
  19. <script src="main.js"></script>
  20. </body>
  21. </html>