Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. <!-- Redirection Counter -->
  2. <script type="text/javascript">
  3. var count = 20; // Timer
  4. var redirect = "/"; // Target URL
  5.  
  6. function countDown() {
  7. var timer = document.getElementById("timer"); // Timer ID
  8. if (count > 0) {
  9. count--;
  10. timer.innerHTML = "This page will redirect in " + count + " seconds."; // Timer Message
  11. setTimeout("countDown()", 1000);
  12. } else {
  13. window.location.href = redirect;
  14. }
  15. }
  16. </script>
  17.  
  18. <div id="master-wrap">
  19. <div id="logo-box">
  20.  
  21. <div class="animated fast fadeInUp">
  22. <div class="icon"></div>
  23. <h1>Thank you</h1>
  24. </div>
  25.  
  26. <div class="notice animated fadeInUp">
  27. <p class="lead">Your message has been successfully sent. We will contact you very soon!</p>
  28. <a class="btn animation" href="javascript:history.back()">&larr; Back</a>
  29. </div>
  30.  
  31. <div class="footer animated slow fadeInUp">
  32. <p id="timer">
  33. <script type="text/javascript">
  34. countDown();
  35. </script>
  36. </p>
  37. <p class="copyright">&copy; Redfrost.com</p>
  38. </div>
  39.  
  40. </div>
  41. <!-- /#logo-box -->
  42. </div>
  43. <!-- /#master-wrap -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement