Files
dev-manufaktur/Dashboard/templates/login.html
2025-02-16 21:47:35 +01:00

23 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login - ClickCandit</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="flex items-center justify-center h-screen bg-gray-900">
<div class="w-full max-w-sm p-8 space-y-4 bg-gray-800 rounded shadow-md">
<h2 class="text-2xl font-bold text-center text-white">Login</h2>
<form method="POST">
<input type="email" name="email" placeholder="E-Mail" required
class="w-full p-2 text-white bg-gray-700 rounded focus:outline-none">
<input type="password" name="password" placeholder="Passwort" required
class="w-full p-2 mt-2 text-white bg-gray-700 rounded focus:outline-none">
<button type="submit" class="w-full p-2 mt-4 bg-blue-500 rounded hover:bg-blue-600">Login</button>
</form>
<p class="text-gray-400">Noch kein Konto? <a href="{{ url_for('register') }}" class="text-blue-400">Registrieren</a></p>
</div>
</body>
</html>