-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (76 loc) · 3.74 KB
/
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
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Administrador de Pacientes</title>
<link rel="stylesheet" href="dist/output.css">
</head>
<body class="bg-gray-100 h-screen">
<h1 class="font-black text-5xl text-center md:w-2/3 mx-auto mt-20">
Seguimiento Pacientes
<span class="text-indigo-700">Veterinaria</span>
</h1>
<div class="mt-12 md:flex container mx-auto ">
<div class="md:w-1/2 lg:w-2/5 mx-5">
<h2 class="font-black text-3xl text-center">Seguimiento Pacientes</h2>
<p class="text-lg mt-5 text-center mb-10">
Añade Pacientes y
<span class="text-indigo-600 font-bold">Administralos</span>
</p>
<form id="formulario-cita" class="bg-white shadow-md rounded-lg py-10 px-5 mb-10">
<div class="mb-5">
<label for="paciente" class="block text-gray-700 uppercase font-bold text-sm">
Nombre Paciente:
</label>
<input class="border-2 w-full p-2 mt-2 placeholder-gray-400 rounded-md" type="text" id="paciente"
placeholder="Nombre Paciente" name="paciente" />
</div>
<div class="mb-5">
<label for="propietario" class="block text-gray-700 uppercase font-bold text-sm">
Nombre Propietario:
</label>
<input class="border-2 w-full p-2 mt-2 placeholder-gray-400 rounded-md" type="text" id="propietario"
placeholder="Nombre Propietario" name="propietario" />
</div>
<div class="mb-5">
<label for="email" class="block text-gray-700 uppercase font-bold text-sm">
Email Contacto
</label>
<input class="border-2 w-full p-2 mt-2 placeholder-gray-400 rounded-md" type="email" id="email"
placeholder="E-mail Contacto" name="email" />
</div>
<div class="mb-5">
<label for="fecha" class="block text-gray-700 uppercase font-bold text-sm">
Fecha Alta
</label>
<input class="border-2 w-full p-2 mt-2 placeholder-gray-400 rounded-md" type="date" id="fecha"
name="fecha" />
</div>
<div class="mb-5">
<label for="sintomas" class="block text-gray-700 uppercase font-bold text-sm">
Síntomas
</label>
<textarea class="border-2 w-full p-2 mt-2 placeholder-gray-400 rounded-md" id="sintomas"
name="sintomas" placeholder="Síntomas del Paciente"></textarea>
</div>
<input type="submit"
class="bg-indigo-600 w-full p-3 text-white uppercase font-bold hover:bg-indigo-700 cursor-pointer transition-colors"
value='Registrar Paciente' />
</form>
</div>
<div class="md:w-1/2 lg:w-3/5 md:h-screen overflow-y-scroll">
<h2 class="font-black text-3xl text-center">Listado Pacientes</h2>
<p class="text-xl mt-5 mb-10 text-center">
Administra tus
<span class="text-indigo-600 font-bold ">Pacientes y Citas</span>
</p>
<div id="citas">
<p class="text-xl mt-5 mb-10 text-center">No Hay Pacientes</p>
</div>
</div>
</div>
<script src="js/app.js"></script>
</body>
</html>