<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>App de Gestión de Vehículos</title>
|
|
|
|
<link rel="stylesheet" href="/css/style.css" />
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<div class="container">
|
|
<div class="branding">
|
|
<h1>Gestión de <span class="highlight">Vehículos</span></h1>
|
|
</div>
|
|
|
|
<!--
|
|
<nav>
|
|
<ul>
|
|
<li><a href="/gestionrepostajes/index.php">Inicio</a></li>
|
|
<li><a href="/gestionrepostajes/vehiculos/menu.php">Vehículos</a></li>
|
|
<li><a href="/gestionrepostajes/repostajes/menu.php">Repostajes</a></li>
|
|
</ul>
|
|
</nav>
|
|
-->
|
|
|
|
<div class="navbar">
|
|
<a href="/gestionrepostajes/index.php">Inicio</a>
|
|
<!-- Menú de vehículos -->
|
|
<div class="subnav">
|
|
<button class="subnavbtn">Vehículos<i class="fa fa-caret-down"></i></button>
|
|
<div class="subnav-content">
|
|
<a href="/gestionrepostajes/vehiculos/create.php"><strong>Añadir un vehículo</strong></a>
|
|
<a href="/gestionrepostajes/vehiculos/read.php"><strong>Listar vehículos</strong></a>
|
|
<a href="/gestionrepostajes/vehiculos/update.php"><strong>Actualizar vehículos</strong></a>
|
|
<a href="/gestionrepostajes/vehiculos/delete.php"><strong>Borrar vehículos</strong></a>
|
|
</div>
|
|
</div>
|
|
<!-- Menú de repostajes -->
|
|
<div class="subnav">
|
|
<button class="subnavbtn">Repostajes<i class="fa fa-caret-down"></i></button>
|
|
<div class="subnav-content">
|
|
<a href="/gestionrepostajes/repostajes/create.php"><strong>Crear un repostaje</strong></a>
|
|
<a href="/gestionrepostajes/repostajes/read.php"><strong>Mostrar repostajes</strong></a>
|
|
<a href="/gestionrepostajes/repostajes/update.php"><strong>Actualizar repostajes</strong></a>
|
|
<a href="/gestionrepostajes/repostajes/delete.php"><strong>Borrar repostajes</strong></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
</header>
|
|
|
|
|