Files
web_auth/auth/demo.html

25 lines
877 B
HTML
Raw Normal View History

2026-01-19 05:35:37 +03:00
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="site-key" content="localhost" />
<title>Демо защищенной страницы</title>
<link rel="stylesheet" href="./styles.css" />
<script src="/auth/guard.js"></script>
</head>
<body>
<main class="page">
<section class="card" aria-labelledby="demo-title">
<div class="card__header">
<h1 id="demo-title">Демо защищенной страницы</h1>
<p class="card__subtitle">
Если вы видите эту страницу, доступ разрешен.
</p>
</div>
<a class="button" href="/auth/login.html">Перейти к форме входа</a>
</section>
</main>
</body>
</html>