| Línea 1... |
Línea 1... |
| 1 |
<?php
|
1 |
<?php
|
| 2 |
$notify = '';
|
2 |
$notify = '';
|
| 3 |
$messages = $this->flashMessenger()->getInfoMessages();
|
3 |
$messages = $this->flashMessenger()->getInfoMessages();
|
| 4 |
foreach($messages as $message)
|
4 |
foreach ($messages as $message) {
|
| 5 |
{
|
- |
|
| 6 |
$notify .= "$.fn.showInfo('$message')";
|
5 |
$notify .= "$.fn.showInfo('$message')";
|
| 7 |
}
|
6 |
}
|
| Línea 8... |
Línea 7... |
| 8 |
|
7 |
|
| 9 |
$messages = $this->flashMessenger()->getSuccessMessages();
|
8 |
$messages = $this->flashMessenger()->getSuccessMessages();
|
| 10 |
foreach($messages as $message)
|
- |
|
| 11 |
{
|
9 |
foreach ($messages as $message) {
|
| 12 |
$notify .= "$.fn.showSuccess('$message')";
|
10 |
$notify .= "$.fn.showSuccess('$message')";
|
| Línea 13... |
Línea 11... |
| 13 |
}
|
11 |
}
|
| 14 |
|
12 |
|
| 15 |
$messages = $this->flashMessenger()->getWarningMessages();
|
- |
|
| 16 |
foreach($messages as $message)
|
13 |
$messages = $this->flashMessenger()->getWarningMessages();
|
| 17 |
{
|
14 |
foreach ($messages as $message) {
|
| Línea 18... |
Línea 15... |
| 18 |
$notify .= " $.fn.showWarning('$message')";
|
15 |
$notify .= " $.fn.showWarning('$message')";
|
| 19 |
}
|
16 |
}
|
| 20 |
|
- |
|
| 21 |
$messages = $this->flashMessenger()->getErrorMessages();
|
17 |
|
| 22 |
foreach($messages as $message)
|
18 |
$messages = $this->flashMessenger()->getErrorMessages();
|
| Línea 23... |
Línea 19... |
| 23 |
{
|
19 |
foreach ($messages as $message) {
|
| 24 |
$notify .= " $.fn.showError('$message')";
|
20 |
$notify .= " $.fn.showError('$message')";
|
| 25 |
}
|
21 |
}
|
| 26 |
|
22 |
|
| 27 |
if($notify) {
|
23 |
if ($notify) {
|
| Línea 28... |
Línea 24... |
| 28 |
$this->inlineScript()->captureStart();
|
24 |
$this->inlineScript()->captureStart();
|
| 29 |
echo " jQuery( document ).ready(function( $ ) { $notify }); ";
|
25 |
echo " jQuery( document ).ready(function( $ ) { $notify }); ";
|
| 30 |
$this->inlineScript()->captureEnd();
|
26 |
$this->inlineScript()->captureEnd();
|
| - |
|
27 |
}
|
| 31 |
}
|
28 |
|
| 32 |
|
29 |
|
| 33 |
|
30 |
?>
|
| 34 |
?>
|
31 |
<!DOCTYPE html>
|
| 35 |
<!DOCTYPE html>
|
32 |
<html>
|
| 36 |
<html>
|
33 |
|
| 37 |
<head>
|
34 |
<head>
|
| 38 |
<?php
|
35 |
<?php
|
| 39 |
echo $this->headTitle();
|
36 |
echo $this->headTitle();
|
| 40 |
?>
|
37 |
?>
|
| 41 |
<link rel="icon" href="<?php echo $this->networkFavicoHelper(); ?>">
|
38 |
<link rel="icon" href="<?php echo $this->networkFavicoHelper(); ?>">
|
| 42 |
<?php
|
39 |
<?php
|
| 43 |
echo $this->headMeta()->appendHttpEquiv('X-UA-Compatible', 'IE=edge')
|
40 |
echo $this->headMeta()->appendHttpEquiv('X-UA-Compatible', 'IE=edge')
|
| 44 |
->appendHttpEquiv('expires','0')
|
41 |
->appendHttpEquiv('expires', '0')
|
| 45 |
->appendHttpEquiv('expires','Tue, 01 Jan 1980 1:00:00 GMT')
|
42 |
->appendHttpEquiv('expires', 'Tue, 01 Jan 1980 1:00:00 GMT')
|
| 46 |
->appendHttpEquiv('pragma', 'no-cache')
|
43 |
->appendHttpEquiv('pragma', 'no-cache')
|
| 47 |
->appendHttpEquiv('Cache-Control', 'no-store')
|
44 |
->appendHttpEquiv('Cache-Control', 'no-store')
|
| 48 |
->appendHttpEquiv('Cache-Control', 'max-age=0')
|
45 |
->appendHttpEquiv('Cache-Control', 'max-age=0')
|
| 49 |
->appendHttpEquiv('Cache-Control', 'no-cache')
|
46 |
->appendHttpEquiv('Cache-Control', 'no-cache')
|
| 50 |
->appendHttpEquiv('charset', 'UTF-8')
|
47 |
->appendHttpEquiv('charset', 'UTF-8')
|
| 51 |
->appendName('viewport', 'width=device-width, initial-scale=1.0');
|
48 |
->appendName('viewport', 'width=device-width, initial-scale=1.0');
|
| 52 |
?>
|
49 |
?>
|
| 53 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/animate.css')?>">
|
50 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/animate.css') ?>">
|
| 54 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/bootstrap.min.css')?>">
|
51 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/bootstrap.min.css') ?>">
|
| 55 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/line-awesome.css')?>">
|
52 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/line-awesome.css') ?>">
|
| 56 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/line-awesome-font-awesome.min.css')?>">
|
53 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/line-awesome-font-awesome.min.css') ?>">
|
| 57 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/fontawesome-free/css/all.min.css')?>">
|
54 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/fontawesome-free/css/all.min.css') ?>">
|
| 58 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/font-awesome.min.css')?>">
|
55 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/font-awesome.min.css') ?>">
|
| 59 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('lib/slick/slick.css')?>">
|
56 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('lib/slick/slick.css') ?>">
|
| 60 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('lib/slick/slick-theme.css')?>">
|
57 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('lib/slick/slick-theme.css') ?>">
|
| 61 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('look-and-field/main.css')?>" />
|
58 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('look-and-field/main.css') ?>" />
|
| 62 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('look-and-field/style-cesa.css')?>" />
|
59 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('look-and-field/style-cesa.css') ?>" />
|
| 63 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/responsive.css')?>" />
|
60 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/responsive.css') ?>" />
|
| 64 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/responsive-cesa.css')?>" />
|
61 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/responsive-cesa.css') ?>" />
|
| 65 |
|
62 |
|
| 66 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/nprogress/nprogress.css')?>">
|
63 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/nprogress/nprogress.css') ?>">
|
| 67 |
|
64 |
|
| 68 |
<?php
|
65 |
<?php
|
| 69 |
echo $this->headStyle();
|
66 |
echo $this->headStyle();
|
| 70 |
echo $this->networkStylesAndColorsHelper();
|
67 |
echo $this->networkStylesAndColorsHelper();
|
| - |
|
68 |
|
| 71 |
|
69 |
echo $this->headLink();
|
| 72 |
echo $this->headLink();
|
70 |
echo $this->headScript();
|
| 73 |
echo $this->headScript();
|
71 |
?>
|
| 74 |
?>
|
72 |
|
| 75 |
|
73 |
</head>
|
| 76 |
</head>
|
74 |
|
| 77 |
<body class="sign-in">
|
75 |
<body class="sign-in">
|
| 78 |
<div class="wrapper">
|
76 |
<div class="wrapper">
|
| 79 |
|
77 |
|
| - |
|
78 |
<div class="sign-in-page">
|
| 80 |
<div class="sign-in-page">
|
79 |
<?php echo $this->content ?>
|
| - |
|
80 |
<div class="footy-sec">
|
| 81 |
<?php echo $this->content ?>
|
81 |
<div class="container">
|
| - |
|
82 |
<?php echo $this->footerHelper() ?>
|
| 82 |
<div class="footy-sec">
|
83 |
<p><img src="<?php echo $this->basePath('images/copy-icon.png') ?>" alt="">LABEL_COPYRIGHT_YEAR</p>
|
| 83 |
<div class="container">
|
84 |
<img class="fl-rgt" src="<?php echo $this->basePath('/images/LL-08.png') ?>" alt="">
|
| 84 |
<?php echo $this->footerHelper() ?>
|
85 |
</div>
|
| - |
|
86 |
</div>
|
| 85 |
<p><img src="<?php echo $this->basePath('images/copy-icon.png') ?>" alt="">LABEL_COPYRIGHT_YEAR</p>
|
87 |
<!--footy-sec end-->
|
| 86 |
</div>
|
88 |
</div>
|
| 87 |
</div><!--footy-sec end-->
|
89 |
<!--sign-in-page end-->
|
| 88 |
</div><!--sign-in-page end-->
|
90 |
|
| 89 |
|
91 |
|
| 90 |
|
92 |
</div>
|
| 91 |
</div><!--theme-layout end-->
|
93 |
<!--theme-layout end-->
|
| 92 |
|
94 |
|
| 93 |
<!-- jQuery -->
|
95 |
<!-- jQuery -->
|
| 94 |
<script type="text/javascript" src="<?php echo $this->basePath('vendors/jquery/jquery.min.js') ?>"></script>
|
96 |
<script type="text/javascript" src="<?php echo $this->basePath('vendors/jquery/jquery.min.js') ?>"></script>
|
| 95 |
<!-- Bootstrap 4 -->
|
97 |
<!-- Bootstrap 4 -->
|
| 96 |
<script type="text/javascript" src="<?php echo $this->basePath('vendors/bootstrap/js/bootstrap.bundle.min.js') ?>"></script>
|
98 |
<script type="text/javascript" src="<?php echo $this->basePath('vendors/bootstrap/js/bootstrap.bundle.min.js') ?>"></script>
|
| 97 |
<!-- Aplicacion -->
|
99 |
<!-- Aplicacion -->
|
| 98 |
<script type="text/javascript" src="<?php echo $this->basePath('vendors/bootstrap-notify/bootstrap-notify.min.js') ?>"></script>
|
100 |
<script type="text/javascript" src="<?php echo $this->basePath('vendors/bootstrap-notify/bootstrap-notify.min.js') ?>"></script>
|
| 99 |
|
101 |
|
| 100 |
<script type="text/javascript" src="<?php echo $this->basePath('js/app.js') ?>"></script>
|
102 |
<script type="text/javascript" src="<?php echo $this->basePath('js/app.js') ?>"></script>
|
| 101 |
|
103 |
|
| - |
|
104 |
<?php
|
| 102 |
<?php
|
105 |
echo $this->inlineScript();
|
| 103 |
echo $this->inlineScript();
|
106 |
?>
|