-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (24 loc) · 871 Bytes
/
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
<!DOCTYPE html>
<html ng-app="myApp1">
<head>
<title>Facebook Login JavaScript Example</title>
<meta charset="UTF-8">
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/angular-route/angular-route.js"></script>
<script src="bower_components/angular-resource/angular-resource.js"></script>
<script src="js/app.js"></script>
<script src="js/controllers.js"></script>
<script src="js/services.js"></script>
</head>
<body>
<!--
Below we include the Login Button social plugin. This button uses
the JavaScript SDK to present a graphical Login button that triggers
the FB.login() function when clicked.
-->
<div class="fb-login-button" data-max-rows="1" data-size="medium" data-show-faces="false"
data-auto-logout-link="true" ></div>
<div id="fb-root" ng-view>
</div>
</body>
</html>