<!
DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Consulta Muro Verde</title>
<link rel="stylesheet" href="[Link]">
</head>
<body>
<header>
<h1>Muro Verde 🌿</h1>
</header>
<main class="container">
<section class="form-section">
<button onclick="[Link]('[Link]', '_blank')">Ver Monitor de
Temperatura</button>
<h2>Consulta de Datos</h2>
<p>Selecciona una fecha para ver los registros ambientales.</p>
<input type="date" id="fecha">
<button onclick="buscarDatos()">Buscar Datos</button>
</section>
<section class="table-section">
<h2>Resultados</h2>
<div class="content-wrapper">
<div class="datos-section">
<table>
<thead>
<tr>
<th>Temp. Máx</th>
<th>Temp. Mín</th>
<th>PH</th>
<th>Humedad</th>
<th>Fecha</th>
<th>Hora</th>
<th>Imagen</th> <!-- Nueva columna -->
</tr>
</thead>
<tbody id="tablaDatos"></tbody>
</table>
</div>
<div class="imagen-section">
<img id="imagenPrincipal" src="[Link]" alt="Imagen
Principal" />
</div>
</div>
</section>
</main>
<script src="[Link]"></script>
</body>
</html>