Files
http/templates/login.html
2026-04-02 10:33:23 -04:00

22 lines
647 B
HTML

<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Logowanie</title>
</head>
<body>
<div class="container">
<h1>Logowanie</h1>
<form method="POST">
<input type="text" name="username" placeholder="Nazwa użytkownika" required>
<input type="password" name="password" placeholder="Hasło" required>
<button type="submit">Zaloguj</button>
</form>
<div class="link">
<a href="/register">Nie masz konta? Zarejestruj się</a>
</div>
</div>
</body>
</html>