-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (27 loc) · 1015 Bytes
/
index.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
<!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.0">
<title>Turnos</title>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<form autocomplete="off">
<h2>SOLICITE SU TURNO</h2>
<input type="text" placeholder="Nombre completo" id="nombre">
<input type="email" placeholder="Email" id="mail">
<input type="number" placeholder="Nro Teléfono" id="tel">
<p>Ingrese una fecha y hora (horario de atención de 08:00hs a 20:00hs todos los dias)</p>
<input type="date" id="fecha"
min="" max="">
<input type="time" id="hora" min="08:00" max="20:00">
<span class="validity"></span>
<input type="submit" placeholder="Solicitar turno" id="turno">
<div class="resultados">
</div>
</form>
<script src="index.js"></script>
</body>
</html>