loading.html 749 B

123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Applying request...</title>
  6. </head>
  7. <body style="background-color:rgba(139, 197, 62, 1)">
  8. <div style="position:fixed; top:50%; left:50%; margin-top:-150px; margin-left:-200px;">
  9. <img src="/Portal/Images/loading.gif" style="width:400px; height:300px;">
  10. </div>
  11. <div style="width:100%; text-align:center; height:20px; position:fixed; bottom:0; color:white; visibility:hidden;" id="manual">
  12. If you don't get redirected please click <a href="http://corendon.nl" target="_self">here</a>
  13. </div>
  14. </body>
  15. <script type="text/javascript">
  16. setTimeout(function() {
  17. document.title = "You will be redirected";
  18. document.getElementById('manual').style.visibility = "visible";
  19. },2750);
  20. </script>
  21. </html>