Files
AnabasisChatRemove/deploy/vk-callback/index.html
Денисов Александр Андреевич 0a82ad7e3e
Some checks are pending
Desktop Release / release (push) Waiting to run
Desktop CI / tests (push) Successful in 1m51s
Add VK callback auth support and admin demotion
2026-06-05 19:01:52 +03:00

47 lines
1.0 KiB
HTML

<!doctype html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>VK authorization</title>
<style>
body {
margin: 0;
min-height: 100vh;
display: grid;
place-items: center;
font-family: Arial, sans-serif;
color: #1f2937;
background: #f8fafc;
}
main {
width: min(520px, calc(100vw - 32px));
padding: 24px;
border: 1px solid #dbe3ef;
border-radius: 8px;
background: #ffffff;
box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}
h1 {
margin: 0 0 12px;
font-size: 20px;
line-height: 1.3;
}
p {
margin: 0;
font-size: 15px;
line-height: 1.5;
}
</style>
</head>
<body>
<main>
<h1>Авторизация VK завершена</h1>
<p>Вернитесь в приложение. Это окно можно закрыть после завершения входа.</p>
</main>
</body>
</html>