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.

close2.html 988B

1234567891011121314151617181920212223242526272829303132
  1. <html>
  2. <head>
  3. <link rel="stylesheet" href="css/all.css"/>
  4. <!--#include virtual="title.html" -->
  5. <script><!--#include virtual="/interface_config.js" --></script>
  6. <script>function translateStr(id, msg) {
  7. var div = document.getElementById(id);
  8. div.innerHTML = msg;
  9. }
  10. function translate() {
  11. translateStr('thanksMessage',
  12. 'Thank you for using ' + interfaceConfig.APP_NAME);
  13. translateStr('hintMessage',
  14. 'You can pin participants by clicking on their thumbnails');
  15. }
  16. </script>
  17. </head>
  18. <body onload="translate();">
  19. <div class="redirectPageMessage">
  20. <div class="thanks-msg">
  21. <p id="thanksMessage"></p>
  22. </div>
  23. <div class="hint-msg">
  24. <p>
  25. <span>Did you know?</span>
  26. <span class="hint-msg__holder" id="hintMessage"></span>
  27. </p>
  28. <div class="happy-software"></div>
  29. </div>
  30. </div>
  31. </body>
  32. </html>