2026-02-10 11:55:47 +01:00

17 lines
383 B
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Login</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<form class="login-form">
<h2>Login</h2>
<input type="text" placeholder="Benutzername" required>
<input type="password" placeholder="Passwort" required>
<button type="submit">Anmelden</button>
</form>
</body>
</html>