cake-order-tracker/auth/templates/login.html
2026-06-10 22:14:48 +02:00

32 lines
1.2 KiB
HTML

<!doctype html>
<html lang="pl">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Login — Zamówienia ciast</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=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,0&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/static/style.css">
</head>
<body class="login-page">
<div class="login-card">
<div class="login-icon">
<span class="material-symbols-outlined" style="font-size:40px">cake</span>
</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>