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 980B

1234567891011121314151617181920212223242526272829303132
  1. <html>
  2. <head>
  3. <link rel="stylesheet" href="css/all.css"/>
  4. <script><!--#include virtual="/interface_config.js" --></script>
  5. <script>function translateStr(id, msg) {
  6. var div = document.getElementById(id);
  7. div.innerHTML = msg;
  8. }
  9. function translate() {
  10. translateStr('thanksMessage',
  11. 'Thank you for using ' + interfaceConfig.APP_NAME);
  12. translateStr('hintMessage',
  13. 'You can use video calls with '
  14. + interfaceConfig.APP_NAME +' for your business');
  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>