grill-blog/public/login/index.html
2024-05-15 02:51:37 +02:00

37 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="stylesheet" href="/static/common.css">
<link rel="stylesheet" href="/static/login.css">
<script src="/static/login.js" defer></script>
<title>Materiel</title>
</head>
<body>
<header>
<a href="/">
<h1>Materiel</h1>
</a>
</header>
<main>
<form method="post">
<h1>Login</h1>
<label for="username">Username</label>
<input id="username" name="username" type="text">
<br>
<label for="password">Password</label>
<input id="password" name="password" type="password">
<br>
<div id="action">
<input type="submit" value="Login">
<a href="/register">Create new account</a>
</div>
</form>
</main>
<footer>
Copyright © 2024 S. F. Jakobsen
</footer>
</body>
</html>