38 lines
1.4 KiB
Plaintext
38 lines
1.4 KiB
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title><?php echo $__env->yieldContent('title'); ?> - <?php echo e(Option::get('site_name')); ?></title>
|
|
<link rel="shortcut icon" href="../assets/images/favicon.ico">
|
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
|
<!-- App Styles -->
|
|
<link rel="stylesheet" href="../assets/dist/app.min.css">
|
|
<link rel="stylesheet" href="../assets/libs/skins/<?php echo e(Option::get('color_scheme')); ?>.min.css">
|
|
|
|
<link rel="stylesheet" href="../assets/css/style.css">
|
|
<link rel="stylesheet" href="../assets/css/auth.css">
|
|
|
|
<style><?php echo e(Option::get('custom_css')); ?></style>
|
|
</head>
|
|
|
|
<body class="hold-transition login-page">
|
|
|
|
<?php echo $__env->yieldContent('content'); ?>
|
|
|
|
<!-- App Scripts -->
|
|
<script type="text/javascript" src="../assets/dist/app.min.js"></script>
|
|
|
|
<script type="text/javascript" src="../assets/js/utils.js"></script>
|
|
<script type="text/javascript" src="../assets/js/auth.js"></script>
|
|
|
|
<?php if(isset($_SESSION['msg'])): ?>
|
|
<script>
|
|
toastr.info('<?php echo e($_SESSION['msg']); ?>'); <?php unset($_SESSION['msg']) ?>
|
|
</script>
|
|
<?php endif; ?>
|
|
|
|
<script><?php echo e(Option::get('custom_js')); ?></script>
|
|
</body>
|
|
</html>
|