-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
agregada nueva funcionalidad
- Loading branch information
Showing
1 changed file
with
88 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
<!doctype html> | ||
<html lang="es"> | ||
|
||
<head> | ||
<meta name="description" content="Generador de recibos de equipo informatico"> | ||
<meta name="keywords" content=""> | ||
<meta http-equiv="Permissions-Policy" content="interest-cohort=()"> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="shortcut icon" href="assets/images/favicon_pba.ico" type="image/x-icon"> | ||
<link rel="stylesheet" href="../styles/style.css"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css"> | ||
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> | ||
<title>DashBoard MT</title> | ||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet" | ||
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous"> | ||
</head> | ||
|
||
<body> | ||
|
||
<main id=""> | ||
<!-- INGRESO USUARIOS --> | ||
<button type="button" class="btn btn-light" data-bs-toggle="modal" data-bs-target="#loginModal">Ingresar</button> | ||
|
||
<!-- Imagen Logo --> | ||
<img src="../assets/images/logo_gba_footer_blanco.svg"> | ||
|
||
<!-- NAV START --> | ||
<header class="text-center my-2 py-2"> | ||
<nav class="border-bottom mb-5"> | ||
<ul class="nav nav-tabs justify-content-center"> | ||
<li class="nav-item"> | ||
<a class="nav-link" aria-current="page" href="../index.html">Inventario 📦</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="../pedidos.html">Crear un MT ✔</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link active" href="../busquedas.html">Buscar un MT 🔍</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link " href="../dashboard.html">Dashboard 📊</a> | ||
</li> | ||
</ul> | ||
</nav> | ||
</header> | ||
<!-- NAV END --> | ||
|
||
<h1 class="mb-5 text-center"> Informacion general del inventario. </h1> | ||
|
||
<!-- INNER NAV START --> | ||
<nav class="navbar navbar-expand-lg "> | ||
<div class="container-fluid"> | ||
<div class="collapse navbar-collapse justify-content-center" id="navbarNav"> | ||
<ul class="navbar-nav"> | ||
<li class="nav-item"> | ||
<a class="nav-link " href="../busquedas.html">🔴 BUSQUEDA DE MT</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link " href="../pages/generarRemitos.html" aria-current="page">🔴 GENERAR RECIBO TENENCIA</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link active" href="../pages/generarRecibos.html" aria-current="page">🟢 GENERAR RECIBO DEVOLUCION</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</nav> | ||
<!-- INNER NAV END --> | ||
|
||
<!-- IFRAME LOOKER START --> | ||
<div class="ratio ratio-4x3"> | ||
<iframe src="https://lookerstudio.google.com/embed/reporting/80d0e33f-23cd-4f47-9927-15b34348eaae/page/nSnmD" | ||
title="tabla de looker studio para generar recibos" allowfullscreen></iframe> | ||
</div> | ||
<!-- IFRAME LOOKER END --> | ||
|
||
</main> | ||
|
||
<footer class="text-center mt-5"> | ||
Inventario MT02023 - Todos Los Derechos Y Torcidos RESERVADOS | ||
</footer> | ||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js" | ||
integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" | ||
crossorigin="anonymous"></script> | ||
</body> | ||
|
||
</html> |