f0ckv2/views/login.html
2021-05-19 14:19:26 +02:00

18 lines
719 B
HTML

<!doctype f0ck>
<html theme="{{if typeof theme !== "undefined" }}{{=theme}}{{/if}}">
<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 />
<button type="submit">Login</button>
</form>
</body>
</html>