wg_index/wg/login.html
2025-12-27 05:02:10 +03:00

43 lines
1.3 KiB
HTML
Executable file
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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 auth">
<div class="topline">
<a class="link" href="./index.html">На главную</a>
</div>
<h1 class="title">Вход</h1>
<form id="loginForm" class="form">
<label class="field">
<span class="label">Логин (email)</span>
<input id="email" name="email" type="text" autocomplete="username" required />
</label>
<label class="field">
<span class="label">Пароль</span>
<input id="password" name="password" type="password" autocomplete="current-password" required />
</label>
<label class="check">
<input id="remember" type="checkbox" />
<span>Запомнить (длинная сессия)</span>
</label>
<button class="btn btn-primary btn-lg" type="submit">Войти</button>
<div id="msg" class="msg" role="status" aria-live="polite"></div>
</form>
</section>
</main>
<script type="module" src="./js/login.js"></script>
</body>
</html>