-
Notifications
You must be signed in to change notification settings - Fork 3
/
auth.html
42 lines (36 loc) · 1.95 KB
/
auth.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
<!DOCTYPE HTML>
<html lang="ru"><head>
<meta charset="utf-8">
<title>VK Auth</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
div {
display: none;
text-align: center;
}
.expires[data-time]:before {
content: ' (осталось ' attr(data-time) ' ч.)';
}
</style>
</head><body>
<div data-auth="no">
<p>Нажмите сюда: <button class="btn-auth">Авторизоваться</button><p>
<p style="margin-top: 25px">После окончания авторизации скопируйте URL, который будет у страницы (https://oauth.vk.com/blank.html#access_token=...), в это поле:</p>
<form class="form-auth">
<p><input type="url" name="auth_url" placeholder="https://oauth.vk.com/blank.html#access_token=.."> <button type="submit">Введено!</button></p>
</form>
<p style="margin-top: 25px">Ключ авторизации хранится на вашем устройстве в локальном хранилище браузера, и не передаётся третьим лицам</p>
<p><a href="./">вернуться обратно</a></p>
</div>
<div data-auth="yes">
<p>Вы авторизованы, ключ доступа будет действовать ровно сутки<span class="expires"></span>, после этого необходимо будет авторизоваться повторно.</p>
<p><a href="./">вернуться обратно</a></p>
</div>
<div data-auth="error">
<p>Произошла какая-то ошибка при авторизации.<p>
</div>
<script src="https://cdn.jsdelivr.net/npm/kamina-js@1.3.2/dist/kamina.min.js" integrity="sha256-dr47GarbRAmyhjmKZJkzGiGF2r/1kJlzFE+75ITwstw=" crossorigin="anonymous" defer></script>
<script src="./js/config.js" defer></script>
<script src="./js/vk-token-check.js" defer></script>
<script src="./js/vk-auth.js?1" defer></script>
</body></html>