-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (57 loc) · 2.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CRM - IndexedDB</title>
<link rel="stylesheet" href="css/tailwind.min.css">
</head>
<body class="min-h-100 bg-gray-200">
<div class="md:flex min-h-screen md:align-top">
<aside class="md:w-2/5 lg:w-2/5 xl:w-1/5 bg-teal-600 px-5 py-10">
<h1 class="uppercase text-white tracking-wide text-2xl font-bold mt-2">CRM - IndexedDB</h1>
<p class="mt-10 text-white">Administra tus Clientes con el CRM - IndexedDB</p>
<nav class="mt-8">
<a
href="/"
class="px-3 py-1 text-white block hover:bg-teal-700 hover:text-yellow-400 bg-teal-700"
>Clientes</a>
<a
href="nuevo-cliente.html"
class="px-3 py-1 text-white block hover:bg-teal-900 mt-2 hover:text-yellow-400"
>Nuevo Cliente</a>
</nav>
</aside> <!--sidebar-->
<main class="md:w-3/5 xl:w-4/5 px-5 py-10 bg-gray-200">
<h2 class="text-3xl font-light text-center">Clientes</h2>
<div class="flex flex-col mt-10">
<div class="py-2 overflow-x-auto">
<div class="align-middle inline-block min-w-full shadow overflow-hidden sm:rounded-lg border-b border-gray-200">
<table class="min-w-full">
<thead class="bg-gray-100 ">
<tr>
<th class="px-6 py-3 border-b border-gray-200 text-left text-xs leading-4 font-medium text-gray-600 uppercase tracking-wider">
Nombre Cliente
</th>
<th class="px-6 py-3 border-b border-gray-200 text-left text-xs leading-4 font-medium text-gray-600 uppercase tracking-wider">
Teléfono
</th>
<th class="px-6 py-3 border-b border-gray-200 text-left text-xs leading-4 font-medium text-gray-600 uppercase tracking-wider">
Empresa
</th>
<th class="px-6 py-3 border-b border-gray-200 text-left text-xs leading-4 font-medium text-gray-600 uppercase tracking-wider">
Acciones
</th>
</tr>
</thead>
<tbody id="listado-clientes" class="bg-white"></tbody>
</table>
</div>
</div>
</div>
</main>
</div>
<script src="js/funciones.js"></script>
<script src="js/app.js"></script>
</body>
</html>