Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16845 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
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 lang="en">
16822 efrain 37
    <head>
38
    	<?php
39
        echo $this->headTitle();
40
        ?>
41
    	<link rel="shortcut icon" href="<?php echo $this->networkFavicoHelper(); ?>">
42
       	<?php
1 www 43
        echo $this->headMeta()->appendHttpEquiv('X-UA-Compatible', 'IE=edge')
44
            ->appendHttpEquiv('expires','0')
16822 efrain 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');
1 www 52
        ?>
16822 efrain 53
 
1 www 54
 
16822 efrain 55
        <!-- Fonts -->
56
      	<link rel="preconnect" href="https://fonts.googleapis.com">
57
      	<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
58
      	<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap" rel="stylesheet">
59
        <!-- End fonts -->
60
 
61
    	<!-- core:css -->
62
    	<link rel="stylesheet" href="<?php echo $this->basePath('assets/vendors/core/core.css') ?>">
63
    	<!-- endinject -->
64
 
65
    	<!-- Plugin css for this page -->
66
    	<!-- End plugin css for this page -->
67
 
68
    	<!-- inject:css -->
69
    	<link rel="stylesheet" href="<?php echo $this->basePath('assets/fonts/feather-font/css/iconfont.css') ?>">
70
    	<link rel="stylesheet" href="<?php echo $this->basePath('assets/vendors/flag-icon-css/css/flag-icon.min.css') ?>">
71
		<link rel="stylesheet" href="<?php echo $this->basePath('assets/vendors/font-awesome/css/font-awesome.css') ?>">
72
 
73
    	<!-- endinject -->
74
 
75
        <!-- Layout styles -->
76
    	<link rel="stylesheet" href="<?php echo $this->basePath('assets/css/style.css') ?>">
77
        <!-- End layout styles -->
78
 
79
      	<link rel="stylesheet" href="<?php echo $this->basePath('assets/css/cesa.css'); ?>">
16845 efrain 80
 
81
 
82
 
83
 
84
      	<!-- - OLD -->
85
      	<link rel="stylesheet" href="<?php echo $this->basePath('assets/css/old/style.css') ?>">
86
      	<link rel="stylesheet" href="<?php echo $this->basePath('assets/css/old/style-cesa.css') ?>">
16822 efrain 87
 
88
    	<?php
1 www 89
        echo $this->headStyle();
15337 efrain 90
        echo $this->networkStylesAndColorsHelper();
1 www 91
        echo $this->headLink();
92
        echo $this->headScript();
93
        ?>
94
    </head>
16822 efrain 95
    <body>
96
    	<div class="main-wrapper">
97
    		<div class="page-wrapper full-page">
98
    			<div class="page-content d-flex align-items-center justify-content-center">
99
 
100
    				<div class="row w-100 mx-0 auth-page">
101
    					<div class="col-md-8 col-xl-6 mx-auto d-flex flex-column align-items-center">
102
							<?php echo $this->content ?>
103
    					</div>
104
    				</div>
105
 
106
    			</div>
107
    		</div>
1 www 108
    	</div>
109
 
16822 efrain 110
    	<!-- core:js -->
111
    	<script src="<?php echo $this->basePath('assets/vendors/core/core.js') ?>"></script>
112
    	<!-- endinject -->
113
 
114
    	<!-- Plugin js for this page -->
115
    	<!-- End plugin js for this page -->
116
 
117
    	<!-- inject:js -->
118
    	<script src="<?php echo $this->basePath('assets/vendors/feather-icons/feather.min.js') ?>"></script>
119
    	<script src="<?php echo $this->basePath('assets/js/template.js') ?>"></script>
120
    	<!-- endinject -->
121
 
122
    	<!-- Custom js for this page -->
123
    	<!-- End custom js for this page -->
16929 efrain 124
 
125
     	<script src="<?php echo $this->basePath('assets/vendors/jquery/jquery.js') ?>"></script>
126
    	<script src="<?php echo $this->basePath('assets/vendors/popper/popper.js') ?>"></script>
127
 
128
    	<script src="<?php echo $this->basePath('assets/vendors/perfect-scrollbar/perfect-scrollbar.js') ?>"></script>
129
    	<script src="<?php echo $this->basePath('assets/vendors/sweetalert2/sweetalert2.all.js') ?>"></script>
130
    	<script src="<?php echo $this->basePath('assets/vendors/toastr/toastr.min.js') ?>"></script>
131
 
132
    	<script src="<?php echo $this->basePath('assets/vendors/jquery-validation/jquery.validate.js') ?>"></script>
133
    	<script src="<?php echo $this->basePath('assets/vendors/jquery-validation/additional-methods.js') ?>"></script>
134
       	<script src="<?php echo $this->basePath('assets/vendors/jquery-validation/localization/messages_es.js') ?>"></script>
135
 
136
    	<script src="<?php echo $this->basePath('assets/js/cesa.js') ?>"></script>
16822 efrain 137
 
138
    	<?php
1 www 139
        echo $this->inlineScript();
140
        ?>
16822 efrain 141
 
1 www 142
    </body>
16822 efrain 143
</html>
144