bludit/bl-kernel/admin/themes/booty/login.php

55 lines
1.1 KiB
PHP
Raw Normal View History

2018-06-05 23:50:03 +02:00
<!DOCTYPE html>
<html>
<head>
2018-06-05 23:50:03 +02:00
<title>Bludit</title>
<meta charset="<?php echo CHARSET ?>">
2018-06-05 23:50:03 +02:00
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="robots" content="noindex,nofollow">
<!-- Favicon -->
2019-03-10 18:27:24 +01:00
<link rel="shortcut icon" type="image/x-icon" href="<?php echo HTML_PATH_CORE_IMG.'favicon.png?version='.BLUDIT_VERSION ?>">
<!-- CSS -->
2018-06-05 23:50:03 +02:00
<?php
echo Theme::cssBootstrap();
echo Theme::css(array(
2019-05-09 19:32:30 +02:00
'bludit.css',
'bludit.bootstrap.css'
), DOMAIN_ADMIN_THEME_CSS);
2018-06-05 23:50:03 +02:00
?>
<!-- Javascript -->
2018-06-05 23:50:03 +02:00
<?php
2018-07-02 00:24:53 +02:00
echo Theme::jquery();
echo Theme::jsBootstrap();
2018-06-05 23:50:03 +02:00
?>
<!-- Plugins -->
<?php Theme::plugins('loginHead') ?>
</head>
2018-06-05 23:50:03 +02:00
<body class="login">
<!-- Plugins -->
<?php Theme::plugins('loginBodyBegin') ?>
2018-06-05 23:50:03 +02:00
<!-- Alert -->
<?php include('html/alert.php'); ?>
<div class="container">
<div class="row justify-content-md-center pt-5">
2018-08-01 13:52:59 +02:00
<div class="col-md-4 pt-5">
2018-06-05 23:50:03 +02:00
<?php
if (Sanitize::pathFile(PATH_ADMIN_VIEWS, $layout['view'].'.php')) {
include(PATH_ADMIN_VIEWS.$layout['view'].'.php');
}
?>
</div>
</div>
</div>
<!-- Plugins -->
<?php Theme::plugins('loginBodyEnd') ?>
</body>
2018-08-01 13:52:59 +02:00
</html>