32 lines
1.1 KiB
HTML
32 lines
1.1 KiB
HTML
<!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>
|