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.

close.html 858B

123456789101112131415161718192021222324252627282930
  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('hintMessage',
  11. 'You can use video calls with '
  12. + interfaceConfig.APP_NAME +' for your business');
  13. }
  14. </script>
  15. </head>
  16. <body onload="translate();">
  17. <div class="redirectPageMessage">
  18. <div class="thanks-msg">
  19. <p id="thanksMessage">Thank you for your feedback!</p>
  20. </div>
  21. <div class="hint-msg">
  22. <p>
  23. <span>Did you know?</span>
  24. <span class="hint-msg__holder" id="hintMessage"></span>
  25. </p>
  26. <div class="happy-software"></div>
  27. </div>
  28. </div>
  29. </body>
  30. </html>