Proyectos de Subversion LeadersLinked - Backend

Rev

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