samey/templates/pages/login.html

24 lines
633 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Login - {{ application_name }}</title>
{% include "fragments/common_headers.html" %}
</head>
<body>
<div><a href="/">&lt; To home</a></div>
<main>
<h1>Login</h1>
<form method="post" action="/login">
<div>
<label>Username</label>
<input id="username" type="text" name="username" autofocus />
</div>
<div>
<label>Password</label>
<input id="password" type="password" name="password" />
</div>
<button type="submit">Login</button>
</form>
</main>
</body>
</html>