28 lines
820 B
PHP
28 lines
820 B
PHP
<?php
|
|
use app\core\Application;
|
|
$pathToCSS = "/views/layouts/CSS/styleAuth.css";
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en" dir="ltr">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" type="text/css" href=<?php echo $pathToCSS ?> />
|
|
<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=Josefin+Sans&display=swap" rel="stylesheet">
|
|
<title><?php echo Application::$app->view->getTitle()?></title>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="BigContainer">
|
|
<h1 class="Title"><?php echo Application::$app->view->getTitle()?></h1>
|
|
<div class="LoginForm">
|
|
{{content}}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|