24 lines
718 B
HTML
Executable file
24 lines
718 B
HTML
Executable file
<!doctype html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
<title>Главная</title>
|
|
<link rel="stylesheet" href="./assets/styles.css" />
|
|
</head>
|
|
<body>
|
|
<main class="center">
|
|
<section class="card hero">
|
|
<h1 class="title">Я крутой</h1>
|
|
<p class="muted">Панель WireGuard</p>
|
|
|
|
<div class="actions">
|
|
<a class="btn btn-ghost btn-xl" href="./request.html">Запросить учётную запись</a>
|
|
<a class="btn btn-primary btn-xl" href="./login.html">Вход</a>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<script type="module" src="./js/index.js"></script>
|
|
</body>
|
|
</html>
|