-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathARTESANIAS ALEBRIJES.html
60 lines (52 loc) · 1.92 KB
/
ARTESANIAS ALEBRIJES.html
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Artesanias alebrijes</title>
<link rel="stylesheet" href="stylosArtesanias.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700&display=swap" rel="stylesheet">
</head>
<body>
<?php
// Prevenir el almacenamiento en caché de la página protegida
header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
// Establece una variable para controlar el acceso a través del navegador
$_SESSION['last_access'] = time();
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
include 'session_check.php';
?>
<header>
<div id="banner">
<img src="ima/logon.png" >
<h1> Bienvenidos <br>"Artesanias alebrije"</h1>
</div>
</header>
<header>
<ul class="menu">
<li><a href="categoria.php">Categorías</a></li>
<li><a href="producto.php">Productos</a></li>
<li><a href="ticket.php">Ticket</a></li>
<li><a href="logout.php">cerrar sesion</a></li>
</ul>
</header>
<div class="formulario1">
<h1>Nuevos Pedidos</h1>
<!-- Botón para visualizar los datos -->
<form action="visualizarpedido.php" method="get">
<button type="submit">revisar nuevos Pedidos</button>
</form>
</div><br><br>
<div class="formulario1">
<h1>Nuevos Proveedor</h1>
<!-- Botón para visualizar los datos -->
<form action="visualizarproveedores.php" method="get">
<button type="submit">revisar nuevos Proveedores</button>
</form>
</div>
</body>
</html>