Files
steal_passwords/templates/clean.html

29 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Strona Logowania</title>
<style>
body { font-family: sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #f4f4f4; }
form { background: white; padding: 2rem; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
input { display: block; margin-bottom: 1rem; width: 100%; padding: 0.5rem; }
button { width: 100%; padding: 0.5rem; background: #007bff; color: white; border: none; cursor: pointer; }
</style>
</head>
<body>
<form method="POST">
<h2>Zaloguj się</h2>
<label for="login">Login:</label>
<input type="text" id="login" name="login" required>
<label for="password">Hasło:</label>
<input type="password" id="password" name="password" required>
<button type="submit">Wyślij dane</button>
</form>
</body>
</html>