f0ckv2/views/login.html
x 7d8baa1da3
All checks were successful
fetch npm modules / f0ck the f0cker (push) Successful in 14s
hthtdf
2025-03-09 13:56:11 +01:00

18 lines
748 B
HTML

<!doctype f0ck>
<html theme="@if(typeof theme !== "undefined"){{ theme }}@endif">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>login</title>
<link href="/s/css/f0ck.css" rel="stylesheet" />
</head>
<body type="login">
<form class="login-form" method="post" action="/login">
<input type="text" name="username" placeholder="username" autocomplete="off" required />
<input type="password" name="password" placeholder="password" autocomplete="off" required />
<p><input type="checkbox" id="kmsi" name="kmsi" /> <label for="kmsi">stay signed in</label></p>
<button type="submit">Login</button>
</form>
</body>
</html>