21 lines
765 B
PHP
21 lines
765 B
PHP
<!doctype html>
|
|
<html lang="pl">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title><?= $e($t('meta.title_pattern', ['title' => (string) ($title ?? $t('meta.default_login_title'))])) ?></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=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="/assets/css/login.css">
|
|
</head>
|
|
<body>
|
|
<div class="bg-orb bg-orb-left" aria-hidden="true"></div>
|
|
<div class="bg-orb bg-orb-right" aria-hidden="true"></div>
|
|
|
|
<main class="login-page">
|
|
<?= $content ?>
|
|
</main>
|
|
</body>
|
|
</html>
|