-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
131 lines (114 loc) · 4.63 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Проверка на ботов вконтакте</title>
<!-- Styles -->
<link href="/css/app.css" rel="stylesheet">
<meta name="csrf-token" content="null">
<script>
var appSettings = {
vkAppId: 6604951
};
</script>
<!-- Yandex.Metrika counter -->
<script type="text/javascript" >
(function (d, w, c) {
(w[c] = w[c] || []).push(function() {
try {
w.yaCounter49241389 = new Ya.Metrika2({
id:49241389,
clickmap:true,
trackLinks:true,
accurateTrackBounce:true,
webvisor:true
});
} catch(e) { }
});
var n = d.getElementsByTagName("script")[0],
s = d.createElement("script"),
f = function () { n.parentNode.insertBefore(s, n); };
s.type = "text/javascript";
s.async = true;
s.src = "https://mc.yandex.ru/metrika/tag.js";
if (w.opera == "[object Opera]") {
d.addEventListener("DOMContentLoaded", f, false);
} else { f(); }
})(document, window, "yandex_metrika_callbacks2");
</script>
<noscript><div><img src="https://mc.yandex.ru/watch/49241389" style="position:absolute; left:-9999px;" alt="" /></div></noscript>
<!-- /Yandex.Metrika counter -->
</head>
<body>
<div id="app">
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<!-- Collapsed Hamburger -->
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
data-target="#app-navbar-collapse">
<span class="sr-only">Toggle Navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="collapse navbar-collapse" id="app-navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li class="active" v-cloak>
<a
v-if="!user"
class="clickable"
@click="auth">
<img src="/images/ic_head_logo.svg" style="margin-right:10px;">Войти
</a>
<div
class="dropdown"
v-if="user">
<button class="btn btn-default dropdown-toggle" type="button" id="dropdownMenu1"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<img
:src="user.photo_50"
class="img-responsive img-circle"
style="display:inline-block; margin-right: 10px;">
{{ user.first_name + ' ' + user.last_name }}
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
<li>
<a
href="#"
@click.prevent="logout">Выйти</a>
</li>
</ul>
</div>
</li>
</ul>
</div>
</div>
</nav>
<div style="margin-top:90px;">
<div class="container">
<div class="row col-xs-12">
<bots-checker></bots-checker>
</div>
</div>
</div>
</div>
<footer class="footer">
<div class="container footer-inner-container1">
<div class="navbar-default pull-right">
<ul class="nav navbar-nav">
<li>
<a href="mailto:[email protected]" target="_blank">Связаться с автором</a>
</li>
</ul>
</div>
</div>
</footer>
<!-- Scripts -->
<script src="https://vk.com/js/api/openapi.js?154" type="text/javascript"></script>
<script src="/js/app-bots.js"></script>
</body>
</html>