25 lines
620 B
HTML
25 lines
620 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>{{ title }} - Login</title>
|
|
<link href="css/style.css" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
{% include "partials/header.html" %}
|
|
|
|
<main>
|
|
<form method="post">
|
|
<h2>Username</h2>
|
|
<input type="text" name="username" placeholder="username" />
|
|
|
|
<h2>Password</h2>
|
|
<input type="password" name="password" placeholder="password" />
|
|
|
|
<button type="submit">Login</button>
|
|
</form>
|
|
</main>
|
|
</body>
|
|
</html>
|