-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsucess.html
38 lines (31 loc) · 1.16 KB
/
sucess.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
31
32
33
34
35
36
37
38
<html>
<head>
<title>Somthing went wrong</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link href="style.css" rel="stylesheet" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body style="background-color:#f2f2f2">
<div class="container-fluid">
<div class="row">
<div class="col-sm-2"></div>
<div class="col-sm-8">
<div class="jumbotron" style="margin:20% 5% 20% 5%">
<h1><span class="glyphicon glyphicon-ok-circle"></span> Hurry, Sucess !</h1>
<p>
You will be redirected to a home page in 5 seconds
</p>
</div>
</div>
<div class="col-sm-2"></div>
</div>
</div>
<script>
window.setTimeout(function(){
// Move to a new location or you can do something else
window.location.href = "index.php";
}, 5000);
</script>
</body>
</html>