1 |
www |
1 |
<?php
|
|
|
2 |
$notify = '';
|
|
|
3 |
$messages = $this->flashMessenger()->getInfoMessages();
|
|
|
4 |
foreach($messages as $message)
|
|
|
5 |
{
|
|
|
6 |
$notify .= "$.fn.showInfo('$message')";
|
|
|
7 |
}
|
|
|
8 |
|
|
|
9 |
$messages = $this->flashMessenger()->getSuccessMessages();
|
|
|
10 |
foreach($messages as $message)
|
|
|
11 |
{
|
|
|
12 |
$notify .= "$.fn.showSuccess('$message')";
|
|
|
13 |
}
|
|
|
14 |
|
|
|
15 |
$messages = $this->flashMessenger()->getWarningMessages();
|
|
|
16 |
foreach($messages as $message)
|
|
|
17 |
{
|
|
|
18 |
$notify .= " $.fn.showWarning('$message')";
|
|
|
19 |
}
|
|
|
20 |
|
|
|
21 |
$messages = $this->flashMessenger()->getErrorMessages();
|
|
|
22 |
foreach($messages as $message)
|
|
|
23 |
{
|
|
|
24 |
$notify .= " $.fn.showError('$message')";
|
|
|
25 |
}
|
|
|
26 |
|
|
|
27 |
if($notify) {
|
|
|
28 |
$this->inlineScript()->captureStart();
|
|
|
29 |
echo " jQuery( document ).ready(function( $ ) { $notify }); ";
|
|
|
30 |
$this->inlineScript()->captureEnd();
|
|
|
31 |
}
|
|
|
32 |
|
|
|
33 |
|
|
|
34 |
?>
|
|
|
35 |
<!DOCTYPE html>
|
|
|
36 |
<html>
|
|
|
37 |
<head>
|
3712 |
efrain |
38 |
<?php
|
|
|
39 |
echo $this->headTitle();
|
|
|
40 |
?>
|
|
|
41 |
<link rel="icon" href="<?php echo $this->networkFavicoHelper(); ?>">
|
|
|
42 |
<?php
|
1 |
www |
43 |
echo $this->headMeta()->appendHttpEquiv('X-UA-Compatible', 'IE=edge')
|
|
|
44 |
->appendHttpEquiv('expires','0')
|
|
|
45 |
->appendHttpEquiv('expires','Tue, 01 Jan 1980 1:00:00 GMT')
|
|
|
46 |
->appendHttpEquiv('pragma', 'no-cache')
|
|
|
47 |
->appendHttpEquiv('Cache-Control', 'no-store')
|
|
|
48 |
->appendHttpEquiv('Cache-Control', 'max-age=0')
|
|
|
49 |
->appendHttpEquiv('Cache-Control', 'no-cache')
|
|
|
50 |
->appendHttpEquiv('charset', 'UTF-8')
|
|
|
51 |
->appendName('viewport', 'width=device-width, initial-scale=1.0');
|
|
|
52 |
?>
|
|
|
53 |
<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')?>">
|
|
|
55 |
<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')?>">
|
|
|
57 |
<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')?>">
|
|
|
59 |
<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')?>">
|
3717 |
stevensc |
61 |
<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')?>" />
|
1 |
www |
63 |
<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')?>" />
|
|
|
65 |
|
|
|
66 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/nprogress/nprogress.css')?>">
|
|
|
67 |
|
|
|
68 |
<?php
|
|
|
69 |
echo $this->headStyle();
|
3639 |
efrain |
70 |
echo $this->networkStylesAndColorsHelper();
|
|
|
71 |
|
1 |
www |
72 |
echo $this->headLink();
|
|
|
73 |
echo $this->headScript();
|
|
|
74 |
?>
|
|
|
75 |
|
|
|
76 |
</head>
|
|
|
77 |
<body class="sign-in">
|
|
|
78 |
<div class="wrapper">
|
|
|
79 |
|
|
|
80 |
<div class="sign-in-page">
|
|
|
81 |
<?php echo $this->content ?>
|
|
|
82 |
<div class="footy-sec">
|
|
|
83 |
<div class="container">
|
|
|
84 |
<?php echo $this->footerHelper() ?>
|
|
|
85 |
<p><img src="<?php echo $this->basePath('images/copy-icon.png') ?>" alt="">LABEL_COPYRIGHT_YEAR</p>
|
|
|
86 |
</div>
|
|
|
87 |
</div><!--footy-sec end-->
|
|
|
88 |
</div><!--sign-in-page end-->
|
|
|
89 |
|
|
|
90 |
|
|
|
91 |
</div><!--theme-layout end-->
|
|
|
92 |
<?php
|
|
|
93 |
echo $this->inlineScript();
|
|
|
94 |
?>
|
|
|
95 |
|
|
|
96 |
|
|
|
97 |
</body>
|
|
|
98 |
</html>
|