Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

index.html 1.0KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>Demo Application</title>
  6. </head>
  7. <body>
  8. <div class="sign-in" style="margin:10px">
  9. <label for="account">Account: </label>
  10. <input type="text" id="account_id" name="account">
  11. <button id="login_id">Login</button>
  12. </div>
  13. <div style="margin: 10px">
  14. <label for="login_id">Init meeting with participants:</label>
  15. <input type="text" id="inp_participants" name="meeting">
  16. <button id="start_meeting_id">Start Meeting</button>
  17. </div>
  18. <div for="meeting_id_label" style="margin: 10px">
  19. Meeting Id: <span id="meeting_id_label">...</span>
  20. </div>
  21. <div style="margin: 10px">
  22. <label for="meeting_id">Meeting Id: </label>
  23. <input type="text" id="inp_meeting_id" name="meeting">
  24. <button id="join_meeting_id">Join Meeting</button>
  25. </div>
  26. <div for="secret_id_label" style="margin: 10px">
  27. Secret: <span id="secret_id_label">...</span>
  28. </div>
  29. </body>
  30. </html>
  31. <script src="main.js"></script>