-
Notifications
You must be signed in to change notification settings - Fork 0
/
secretpage.html
26 lines (26 loc) · 1.57 KB
/
secretpage.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
<!DOCTYPE html>
<html>
<head>
<title>Registration Confirm!</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="TSW WebCoder">
</head>
<body>
<div class="alert alert-success center-block" role="alert">
<h4 class="text-center">Login Successfull!</h4><br><br><br>
<hr>
<p class="text-center">You will be shortly redirected to main page, <u><a href="index.html" style="text-decoration: none; color :#0986d9 !important;;">Click here</a></u> if you are not redirected within a few seconds.</p></p>
</div>
<!--<div class="part-five part-four" id="Get-Started" style="display: flex; align-items: center; justify-content: center; background-size: auto !important;">
<p>Form Sent Successfully!!.<br>You will be shortly redirected to main page, Click here <a href="index.html" style="text-decoration: none; color :#0986d9 !important;;">here </a> if you are not redirected within a few seconds.</p>
</div>-->
<script src="http://code.jquery.com/jquery-3.3.1.js"></script>
<script>
setTimeout(function () {
window.location.replace("logout.php"); //will redirect to main page (index.html)
}, 3000); //will call the function after 3 secs.
</script>
</body>
</html>