-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorigen.php
More file actions
89 lines (88 loc) · 3.1 KB
/
Copy pathorigen.php
File metadata and controls
89 lines (88 loc) · 3.1 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
<?php
session_start();
require_once("./motores/interno/funciones.php");
require_once("./motores/interno/validador.php");
require_once("./motores/interno/formatos.php");
require_once("./motores/interno/defs.php");
?>
<!DOCTYPE html>
<html>
<head>
<title><?= NOMBRE_APLICACION ?> -- Bienvenido, <?= $_SESSION['Usuario']['nombre']; ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" >
<meta charset="utf-8">
<!-- SEO Meta Tags -->
<meta name="description" content="Descripción" />
<meta name="keywords" content="Palabras Clave" />
<meta name="author" content="CarpathiaLab" />
<!-- Mobile Specific Meta Tag -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<!-- Favicon Icon -->
<script src="js/jquery.min.js"></script>
<script src="js/jquery-ui.min.js"></script>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<!--CSS-->
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="css/personalizado.css" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"/>
<link rel="stylesheet" href="css/jquery-ui.min.css" />
<script type="text/javascript">
function doLogout() {
$.ajax({
url : "motores/hanumat.php",
type : "POST",
dataType : "JSON",
data : {
r : 's'
}
}).done(function(r) {
if (r.error == '0') {
window.location.reload();
}
});
//limpiaDers();
return false;
}
</script>
<style type="text/css">
</style>
</head>
<body>
<header>
<nav id="herramientas" class="navbar navbar-toggleable-md navbar-light bg-faded" style="background-color: rgba(105, 100, 100, 0.73); height:120px;">
<!--<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#opciones" aria-controls="opciones" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<a class="navbar-brand" href="#"><img src="img/logo-small.png" alt="logo"></a>
<div id="opciones" class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li class="nav-item"><a class="nav-link" href="registro.php">REGISTRARSE</a></li>
<li class="nav-item"><a class="nav-link" href="#" data-toggle="modal" data-target="#firmado">INICIAR SESIÓN</a></li>
</ul>
</div>-->
<a class="navbar-brand" href="#"><img src="img/logo-small.png" alt="logo"></a>
<div id="opciones" class="collapse navbar-collapse">
<?= dameMenuMigrante(); ?>
</div>
<!--</div>-->
</div>
</nav>
</header>
<div class="container">
<div class="row" >
</div>
</div>
<!-- Footer -->
<footer>
<div class="row">
<div class="col-lg-12">
<p>2018 © Datametrix </p>
</div>
</div>
</footer>
<script src="js/popper.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/plugins/jquery.magnific-popup.min.js"></script>
</body>
</html>