security/templates/login.html
2024-03-21 23:20:24 +03:00

22 lines
630 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>MatterLinux | Security</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=1200">
<link href="/global.css" rel="stylesheet">
<link href="/login.css" rel="stylesheet">
</head>
<body>
{{template "parts/bar" .}}
<main>
<form action="/login" method="POST">
<h1>Login to managment interface</h1>
<input name="username" type="text" placeholder="Username">
<input name="password" type="password" placeholder="Password">
<button type="submit">Login</button>
</form>
</main>
</body>
</html>