Bläddra i källkod

Create loading.html

This shows the loading page
Deben Oldert 11 år sedan
förälder
incheckning
c366aee750
1 ändrade filer med 21 tillägg och 0 borttagningar
  1. 21 0
      captiveportal/loading.html

+ 21 - 0
captiveportal/loading.html

@@ -0,0 +1,21 @@
+<!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>