-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsuspended.html
30 lines (30 loc) · 1008 Bytes
/
suspended.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<html>
<head>
<title>Loading</title>
<link rel="stylesheet" type="text/css" href="css/demo.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script type="text/javascript">
function sleep(milliseconds) {
var start = new Date().getTime();
for(var i = 0; i < 1e7; i++) {
if((new Date().getTime() - start) > milliseconds){
break;
}
}
}
</script>
</head>
<body>
<div class="container">
<header>
<h1>Your account is registered <span> you must wait until your account is activated</span></h1>
</header>
<script type="text/javascript">
setTimeout('Redirect()',4000);
function Redirect() {
location.href = 'index.html';
}
</script>
</div>
</body>
</html>