-
Notifications
You must be signed in to change notification settings - Fork 0
/
guias.php
48 lines (48 loc) · 1.88 KB
/
guias.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
<?php include("inc_session.php"); ?>
<?php include("inc_seguridad.php"); ?>
<?php include("inc_conectarse.php"); ?>
<?php include("inc_functions.php"); ?>
<?php $_SESSION["modulo"] = "guias"; ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<?php include("inc_metadata.php"); ?>
<body>
<!-- wrap starts here -->
<?php include("inc_header.php"); ?>
<div id="wrap">
<?php include("inc_menu.php"); ?>
<!-- content-wrap starts here -->
<div id="content-wrap">
<?php include("inc_sidebar.php"); ?>
<div id="main">
<h1>Guías de Entrega</h1>
<p>
<strong>
<a href="adm_generar_guia.php">
<img align="texttop" src="images/icons/paste_plain.png" border="0" />
Generar Guía
</a>
</strong>
<br />
Le permite generar una nueva guiía a partir de envíos aún no asignados.
</p>
<p>
<strong>
<a href="adm_guias.php">
<img align="texttop" src="images/icons/paste_plain.png" border="0" />
Administrar Guías
</a>
</strong>
<br />
Le permite consultar guías existentes, así
como modificar y eliminar guías (cuando aplique).
</p>
</div>
<!-- content-wrap ends here -->
</div>
<!-- wrap ends here -->
</div>
<?php include("inc_footer.php"); ?>
</body>
</html>
<?php include("inc_desconectarse.php"); ?>