-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignout.html
58 lines (56 loc) · 2.29 KB
/
signout.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html>
<head>
<title>ComPlay: You must sign in</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<link href = "css/navbar.css" rel = "stylesheet">
<!-- Button CSS -->
<link href = "css/bootstrap-social.css" rel = "stylesheet">
<link rel="stylesheet" type="text/css" href="css/complay.css" />
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<script src="complay.js"></script>
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
}
#map {
height: 100%;
}
</style>
<link rel='shortcut icon' href='favicon.ico' type='image/x-icon'/>
</head>
<body>
<nav class="navbar navbar-default" role="navigation">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand topnav" href="#"><strong>ComPlay</strong></a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
</div>
<!-- /.container -->
</nav>
<div id="signinprompt"><p style="padding-left: 15px; margin-left: 88.5px; margin-top: 5px">You have been signed out. You will be redirected to the home page in 5 seconds.</p></div>
<script>
// Note: This example requires that you consent to location sharing when
// prompted by your browser. If you see the error "The Geolocation service
// failed.", it means you probably did not give permission for the browser to
// locate you.
setTimeout(function() {
window.location = "index.html";
}, 5000);
</script>
</body>
</html>