22 lines
630 B
HTML
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>
|