25 lines
1.3 KiB
HTML
25 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Registrierung - 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">Registrieren</h2>
|
|
<form method="POST">
|
|
<input type="text" name="name" placeholder="Name" required
|
|
class="w-full p-2 text-white bg-gray-700 rounded focus:outline-none">
|
|
<input type="email" name="email" placeholder="E-Mail" required
|
|
class="w-full p-2 mt-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-green-500 rounded hover:bg-green-600">Registrieren</button>
|
|
</form>
|
|
<p class="text-gray-400">Bereits ein Konto? <a href="{{ url_for('login') }}" class="text-blue-400">Login</a></p>
|
|
</div>
|
|
</body>
|
|
</html>
|