-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinicio.php
More file actions
111 lines (75 loc) · 3.21 KB
/
Copy pathinicio.php
File metadata and controls
111 lines (75 loc) · 3.21 KB
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
<?php include("adminuser/adminpro_class.php");
$prot=new protect("1");
if ($prot->showPage) {
$curUser=$prot->getUser();
include("lib/mysql.php");
$db = new MySQL();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="shortcut icon" href="images/favicon.ico">
<title>Sistema ERP</title>
<link href="styles/templatemo_style.css" rel="stylesheet" type="text/css" />
<script language="javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery-latest.js"></script>
<script type="text/javascript" src="js/jquery.tablesorter.js"></script>
<script type="text/javascript" src="js/jquery.tablesorter.pager.js"></script>
<script type="text/javascript" src="js/chili/chili-1.8b.js"></script>
<script type="text/javascript" src="js/docs.js"></script>
<script type="text/javascript" src="js/jquery.alerts.js"></script>
<script src="js/jquery.ui.draggable2.js"></script>
</head>
<body>
<div id="templatemo_wrapper">
<div id="templatemo_header">
<div id="site_title">
<h1><a href="#">Sistema de ERP<span><?php echo 'Bienvenido, <b> '.$curUser.' </b>'; ?></span></a></h1>
</div> <!-- end of site_title -->
<div class="cleaner"></div>
</div> <!-- end of templatemo_header -->
<div id="templatemo_menu">
<ul>
<li><a href="#" class="current">Inicio</a></li>
<li><a href="ventas/ventas.php">Ventas</a></li>
<li><a href="compras/compras.php">Compras</a></li>
<li><a href="produccion/produccion.php">Producción</a></li>
<li><a href="administracion/admin.php">Administración</a></li>
<li><a href="configuracion/administracion.php">Configuración</a></li>
<li><a href="#" onclick="javascript:document.forms['salir'].submit();">Salir</a></li>
<?php
echo '<form action="adminuser/logout.php" method="POST" name="salir" id="salir">
<input type="hidden" name="action" value="logout">';
echo'</form>';
?>
</ul>
</div> <!-- end of templatemo_menu -->
<div id="templatemo_banner_wrapper">
<div id="templatemo_banner_thin">
<div class="cleaner"></div>
</div> <!-- end of banner -->
</div> <!-- end of banner_wrapper -->
<div id="templatemo_service_bar_wrapper">
<div id="templatemo_service_line">
</div> <!-- end of templatemo_service_bar -->
</div> <!-- end of templatemo_service_bar_wrapper -->
<div id="templatemo_content_wrapper">
<div id="templatemo_content">
<div class="col_w565_interior">
<!-- AQUI VA EL CONTENIDO -->
<div class="cleaner_h20"></div>
</div>
<div class="cleaner"></div>
</div>
</div>
</div> <!-- end of templatemo_wrapper -->
<div id="templatemo_footer_wrapper">
<div id="templatemo_footer">
<a href="#">Cénit Consultores</a>
</div> <!-- end of templatemo_footer -->
</div> <!-- end of templatemo_footer_wrapper -->
</body>
</html>
<?php
}
?>