21 lines
592 B
HTML
21 lines
592 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Login</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
</head>
|
|
<body class="bg-gray-100 flex items-center justify-center h-screen">
|
|
|
|
<form class="bg-white p-6 rounded shadow-md w-80">
|
|
<h2 class="text-xl text-center mb-4">Login</h2>
|
|
<input class="border w-full p-2 mb-3" type="text" placeholder="Benutzername">
|
|
<input class="border w-full p-2 mb-3" type="password" placeholder="Passwort">
|
|
<button class="bg-blue-500 text-white w-full p-2 rounded">
|
|
Anmelden
|
|
</button>
|
|
</form>
|
|
|
|
</body>
|
|
</html>
|