f0ckv2/views/login.html

19 lines
818 B
HTML
Raw Normal View History

2021-05-19 12:19:26 +00:00
<!doctype f0ck>
2021-12-04 11:19:47 +00:00
<html theme="@if(typeof theme !== "undefined"){{ theme }}@endif">
2021-05-19 12:19:26 +00:00
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>f0ck login</title>
<link href="/s/css/f0ck.css" rel="stylesheet" />
</head>
<body type="login">
<form class="login-form" method="post" action="/login">
<p><a href="/"><img src="/s/img/f0ck_small.png" /></a></p>
<input type="text" name="username" placeholder="username" autocomplete="off" required />
<input type="password" name="password" placeholder="password" autocomplete="off" required />
2022-03-23 04:58:48 +00:00
<p><input type="checkbox" id="kmsi" name="kmsi" /> <label for="kmsi">stay signed in</label></p>
2021-05-19 12:19:26 +00:00
<button type="submit">Login</button>
</form>
</body>
</html>