-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 936 Bytes
/
index.html
File metadata and controls
25 lines (25 loc) · 936 Bytes
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
<!DOCTYPE html>
<html lang="ru" ng-app="myApp">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Авторизация VK через AngularJS</title>
<!-- Angular -->
<script src="scripts/angular.min.js"></script>
<script src="scripts/angular-route.js"></script>
<script src="scripts/app.js"></script>
<script src="https://vk.com/js/api/openapi.js?136" type="text/javascript"></script>
<link rel="stylesheet" href="/styles/style.css">
</head>
<body ng-controller="pageCtrl as page">
<div ng-view></div>
</body>
<!-- Инициализация API вконтакте-->
<script type="text/javascript">
VK.init({
apiId: 5763775
});
</script>
</html>