-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (32 loc) · 1.29 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
<!doctype html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="ru"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="ru"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="ru"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="ru"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dating CRM</title>
<!--
<link rel="stylesheet" href="/libs/bootstrap/dist/css/bootstrap.min.css" />
-->
<link rel='stylesheet' href='assets/css/bootstrap/css/bootstrap.min.css' />
<link rel='stylesheet' href='assets/css/style.css' />
<link href='//fonts.googleapis.com/css?family=PT+Sans:400,700&subset=latin,cyrillic' rel='stylesheet' type='text/css'>
</head>
<body>
<script src="//vk.com/js/api/openapi.js" type="text/javascript"></script>
<div id="login_button" onclick="VK.Auth.login(authInfo);"></div>
<script src="app/app.min.js"></script>
<script type="text/javascript">
function authInfo(response) {
if (response.session) {
console.log('user: '+response.session.mid);
} else {
console.log('not auth');
}
}
</script>
</body>
</html>