2020-06-21 21:29:52 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2021-10-01 11:40:13 +02:00
|
|
|
|
2020-06-21 21:29:52 +02:00
|
|
|
<head>
|
|
|
|
<?= $this->Html->charset() ?>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>
|
|
|
|
<?= 'Cerebrate' ?>:
|
|
|
|
<?= $this->fetch('title') ?>
|
|
|
|
</title>
|
|
|
|
<?= $this->Html->meta('icon') ?>
|
2021-10-01 11:40:13 +02:00
|
|
|
<?php
|
2021-10-05 12:06:09 +02:00
|
|
|
echo $this->Html->css('themes/bootstrap-' . $bsTheme);
|
|
|
|
echo $this->Html->css('themes/theme-' . $bsTheme);
|
2021-10-01 11:40:13 +02:00
|
|
|
?>
|
2020-06-21 21:29:52 +02:00
|
|
|
<?= $this->Html->css('login.css') ?>
|
|
|
|
<?= $this->Html->css('main.css') ?>
|
|
|
|
<?= $this->Html->css('font-awesome') ?>
|
|
|
|
<?= $this->Html->script('jquery-3.5.1.min.js') ?>
|
|
|
|
<?= $this->Html->script('popper.min.js') ?>
|
|
|
|
<?= $this->Html->script('bootstrap.bundle.js') ?>
|
|
|
|
<?= $this->Html->script('main.js') ?>
|
|
|
|
<?= $this->fetch('meta') ?>
|
|
|
|
<?= $this->fetch('css') ?>
|
|
|
|
<?= $this->fetch('script') ?>
|
|
|
|
<?= $this->Html->meta('favicon.ico', '/img/favicon.ico', ['type' => 'icon']); ?>
|
|
|
|
</head>
|
2021-10-01 11:40:13 +02:00
|
|
|
|
2021-10-05 12:06:09 +02:00
|
|
|
<body>
|
|
|
|
<div class="position-absolute cerebrate-background-logo"></div>
|
2021-10-01 11:40:13 +02:00
|
|
|
<?= $this->Flash->render() ?>
|
|
|
|
<?= $this->fetch('content') ?>
|
2020-06-21 21:29:52 +02:00
|
|
|
<div id="mainModal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="mediumModalLabel" aria-hidden="true"></div>
|
|
|
|
</body>
|
2021-10-01 11:40:13 +02:00
|
|
|
|
|
|
|
</html>
|