-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSupervisor.php
141 lines (122 loc) · 5.29 KB
/
Supervisor.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<?php
session_start();
if($_SESSION['Rol']=='Supervisor')
{
?>
<!DOCTYPE html>
<!--[if IE 8]> <html lang="en" class="ie8"> <![endif]-->
<!--[if !IE]><!-->
<html lang="en">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<title>DUO Impresiones | Area de caja registradora</title>
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport">
<meta content="" name="description">
<meta content="" name="author">
<!-- ================== BEGIN BASE CSS STYLE ================== -->
<link href="http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700" rel="stylesheet">
<link href="assets/plugins/jquery-ui/themes/base/minified/jquery-ui.css" rel="stylesheet">
<link href="assets/plugins/bootstrap/css/bootstrap.css" rel="stylesheet">
<link href="assets/plugins/font-awesome/css/font-awesome.css" rel="stylesheet">
<link href="assets/css/animate.css" rel="stylesheet">
<link href="assets/css/style.css" rel="stylesheet">
<link href="assets/css/style-responsive.css" rel="stylesheet">
<link href="assets/css/theme/default.css" rel="stylesheet" id="theme">
<!-- ================== END BASE CSS STYLE ================== -->
<!-- ================== BEGIN PAGE LEVEL STYLE ================== -->
<link href="assets/plugins/jquery-jvectormap/jquery-jvectormap-1.2.css" rel="stylesheet">
<link href="assets/plugins/bootstrap-datepicker/css/datepicker.css" rel="stylesheet">
<link href="assets/plugins/bootstrap-datepicker/css/datepicker3.css" rel="stylesheet">
<link href="assets/plugins/gritter/css/jquery.css" rel="stylesheet">
<link href="assets/plugins/parsley/src/parsley.css" rel="stylesheet" />
<style>.class{height:20px;}.navbar-brand>img{display:inline;} .ocultar{display:none;} .bwizard-steps.clearfix.clickable{padding-left: 0px!important;} .table-responsive {min-height: .01%;overflow-x: hidden;}</style>
<link href="assets/css/toastr.min.css" rel="stylesheet">
<!-- ================== END PAGE LEVEL STYLE ================== -->
<!-- ================== BEGIN BASE JS ================== -->
<script src="assets/plugins/pace/pace.js"></script>
<!-- ================== END BASE JS ================== -->
</head>
<body>
<div id="page-loader" class="fade in"><span class="spinner"></span></div>
<div id="page-container" class="fade page-sidebar-fixed page-header-fixed">
<div id="header" class="header navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<a href="#" class="navbar-brand"><img height="95%" src="../assets/img/duologo.png"> Impresiones</a>
<button type="button" class="navbar-toggle" data-click="sidebar-toggled">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<ul class="nav navbar-nav navbar-right">
<li class="dropdown navbar-user">
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown">
<img src="assets/img/user-13.jpg" alt="">
<span class="hidden-xs"><?php echo $_SESSION['Nombre']; ?></span> <b class="caret"></b>
</a>
<ul class="dropdown-menu animated fadeInLeft">
<li><a href="javascript:;">Configuracion de cuenta</a></li>
<li class="divider"></li>
<li><a href="Servicios/logout.php">Salir</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div id="sidebar" class="sidebar">
<div data-scrollbar="true" data-height="100%">
<ul class="nav">
<li class="nav-profile">
<div class="image">
<a href="javascript:;"><img src="assets/img/user-13.jpg" alt=""></a>
</div>
<div class="info">
<span class="hidden-xs"><?php echo $_SESSION['Nombre']; ?></span> <b class="caret"></b>
<small><?php echo $_SESSION['Rol']; ?></small>
</div>
</li>
</ul>
<ul class="nav">
<li><a href="javascript:;" class="sidebar-minify-btn" data-click="sidebar-minify"><i class="fa fa-angle-double-left"></i></a></li>
</ul>
</div>
</div>
<div class="sidebar-bg"></div>
<div id="content" class="content">
<h1 class="page-header">DUO Impresiones <small>Inicio de la aplicacion ...</small></h1>
<div id="Contenedor">
</div>
</div>
</div>
<!-- end page container -->
<!-- ================== BEGIN BASE JS ================== -->
<script src="assets/plugins/jquery/jquery-1.9.1.js"></script>
<script src="assets/plugins/jquery/jquery-migrate-1.1.0.js"></script>
<script src="assets/plugins/jquery-ui/ui/minified/jquery-ui.js"></script>
<script src="assets/plugins/bootstrap/js/bootstrap.js"></script>
<script src="assets/plugins/slimscroll/jquery.slimscroll.js"></script>
<script src="assets/plugins/jquery-cookie/jquery.js"></script>
<!-- ================== END BASE JS ================== -->
<!-- ================== BEGIN PAGE LEVEL JS ================== -->
<script src="assets/plugins/parsley/dist/parsley.js"></script>
<script src="assets/js/toastr.min.js"></script>
<script src="assets/js/apps.js"></script>
<script src="assets/jsduo/jscript.js"></script>
<!-- ================== END PAGE LEVEL JS ================== -->
<script>
$(document).ready(function() {
App.init();
});
</script>
</body>
</html>
<?php
}
else
{
session_destroy();
header("Location:../Servicios/logout.php");
}
?>