style rewrite

This commit is contained in:
bronku 2026-06-10 20:42:06 +02:00
parent 8c7067d5d9
commit 7c756e87c1
8 changed files with 737 additions and 376 deletions

View file

@ -1,16 +1,32 @@
<header>
<h1>Login</h1>
</header>
<main>
<form method="post">
<label>Login</label>
<label>
<input type="text" name="login" />
</label>
<label>Password</label>
<label>
<input type="password" name="password" />
</label>
<button type="submit">login</button>
</form>
</main>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Login</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/static/style.css">
<link rel="stylesheet" href="/static/fontawesome/css/fontawesome.min.css">
<link rel="stylesheet" href="/static/fontawesome/css/solid.css">
</head>
<body class="login-page">
<div class="login-card">
<div class="login-icon">
<i class="fa-solid fa-birthday-cake"></i>
</div>
<h1>Zaloguj się</h1>
<form method="post">
<label>
<span>Login</span>
<input type="text" name="login" />
</label>
<label>
<span>Hasło</span>
<input type="password" name="password" />
</label>
<button type="submit">Zaloguj się</button>
</form>
</div>
</body>
</html>