37 lines
812 B
HTML
37 lines
812 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<!-- COMENTARIO EN HTML-->
|
||
|
<title>Guardar en PruebaDB</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<header>
|
||
|
<link rel="stylesheet" href="estilo.css">
|
||
|
</header>
|
||
|
<nav>
|
||
|
|
||
|
</nav>
|
||
|
|
||
|
<section>
|
||
|
<center>
|
||
|
<form action="conexion.php" method="POST" >
|
||
|
<br/><br/>
|
||
|
<h2>Datos a Ingresar</h2><br/>
|
||
|
<h3>Fecha(YYYY-MM-DD HH:MM):<br/>
|
||
|
<input type="detetime-local" required name="fecha" min="2018-09-16 16:30" step="1"/><br/><br/>
|
||
|
Temperatura:
|
||
|
<input type="number" required name="temp" min="0" max="99.9" value="0" step="0.1">
|
||
|
<br/>
|
||
|
Humedad:
|
||
|
<input type="number" required name="hum" min="0" max="99" value="0" step="1">
|
||
|
<br/>
|
||
|
<input type="submit" value="enviar" /></h3>
|
||
|
</form>
|
||
|
</center>
|
||
|
</section>
|
||
|
|
||
|
<footer></footer>
|
||
|
|
||
|
</body>
|
||
|
</html>
|