Files
syshelper/static/login.html
T

36 lines
1.4 KiB
HTML

<!doctype html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Вход — Родительский контроль</title>
<style>
:root { color-scheme: dark; }
* { box-sizing: border-box; }
body { margin:0; min-height:100vh; display:grid; place-items:center;
background:#14161a; color:#e6e8eb;
font:14px/1.5 system-ui, "Segoe UI", sans-serif; }
form { background:#1c1f26; border:1px solid #2a2f3a; border-radius:10px;
padding:22px; width:min(320px, 90vw); }
h1 { font-size:16px; margin:0 0 14px; }
label { display:block; color:#9aa4b2; font-size:13px; margin-bottom:6px; }
input { width:100%; background:#14161a; color:#e6e8eb; border:1px solid #3a4150;
border-radius:6px; padding:8px; font-size:14px; }
button { width:100%; margin-top:14px; background:#2a2f3a; color:#e6e8eb;
border:1px solid #3a4150; border-radius:6px; padding:8px;
cursor:pointer; font-size:14px; }
button:hover { background:#343a47; }
p.msg { margin:12px 0 0; color:#e0b872; font-size:13px; }
</style>
</head>
<body>
<form method="post" action="/login">
<h1>Родительский контроль</h1>
<label for="password">Пароль</label>
<input id="password" name="password" type="password" autofocus required>
<button type="submit">Войти</button>
<p class="msg"><!--MESSAGE--></p>
</form>
</body>
</html>