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