-
Notifications
You must be signed in to change notification settings - Fork 1
/
Index.html
75 lines (59 loc) · 2.35 KB
/
Index.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html>
<head>
<title>Group Post</title>
<meta name="msvalidate.01" content="A5B6D1D221E0C07C26B13EB42500478D" />
<script src="js/lib/jquery-2.1.1.js"></script>
<script src="js/login.js"></script>
<script src="js/lib/WinJS-XYFocus.js"></script>
<script type="text/javascript">
WinJS.UI.XYFocus.enableXYFocus()
WinJS.UI.XYFocus.keyCodeMap.up.push(38);
WinJS.UI.XYFocus.keyCodeMap.down.push(40);
WinJS.UI.XYFocus.keyCodeMap.left.push(37);
WinJS.UI.XYFocus.keyCodeMap.right.push(39);
//This is the "Offline page" service worker
//Add this below content to your HTML page, or add the js file to your page at the very top to register sercie worker
if (navigator.serviceWorker.controller) {
console.log('[Manifoldjs] active service worker found, no need to register')
} else {
//Register the ServiceWorker
navigator.serviceWorker.register('./manifoldjs-sw.js', {
scope: './'
}).then(function(reg) {
console.log('Service worker has been registered for scope:'+ reg.scope);
});
}
</script>
<link rel="stylesheet" type="text/css" href="css/font-awesome.css">
<link rel="stylesheet" href="css/bootstrap.css">
<!-- <link rel="stylesheet" href="css/social-buttons.css"> -->
<link rel="stylesheet" href="css/bootstrap-social.css">
<link rel="stylesheet" href="css/myStyle.css">
<meta name="msapplication-cortanavcd" content="https://grouppost.azurewebsites.net/vcd.xml"/>
<!-- <meta name="ms-webauth-uris" content="https://www.facebook.com/dialog/oauth?client_id=821945741172950&redirect_uri=https://grouppost.azurewebsites.net/postBoard.html https://www.facebook.com/v2.1/dialog/oauth"/> -->
</head>
<body>
<!--<button id="loginB" class="btn btn-xlarge btn-facebook"><i class="fa fa-facebook"></i> | Sign in with Facebook</button>-->
<div class='navBar'>
<p class='titleText'>group post</p>
</div>
<!-- <div class="row text-center">
<img id="logoPic"class="logoLarge" alt="Note Logo">
</div>
-->
<div class="loginContainer container">
<a id="loginB" tabindex="1" class="btn btn-block btn-social btn-lg btn-facebook">
<i class="fa fa-facebook"></i> Sign in with Facebook
</a>
</div>
<!--
<div
class="fb-like"
data-share="true"
data-width="450"
data-show-faces="true">
</div>
-->
</body>
</html>