-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin-user.html
More file actions
82 lines (58 loc) · 2.38 KB
/
Copy pathadmin-user.html
File metadata and controls
82 lines (58 loc) · 2.38 KB
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
<!DOCTYPE html>
<html lang="en" class="h-full bg-white">
<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>Free Tour Segovia</title>
<link rel="stylesheet" href="./css/tailwind-out.css">
<script src="./js/base-script.js"></script>
<script src="./js/access-controll.js"></script>
<script src="./js/scriptAPI.js"></script>
<script src="./js/admin-user.js"></script>
</head>
<body class="h-full">
<!-- NavBar -->
<nav id="navbarAdmin" class="bg-amber-500 shadow">
</nav>
<!-- CONTENT -->
<div class="min-h-full">
<!-- Page heading -->
<header class="bg-white py-8">
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 xl:flex xl:items-center xl:justify-between">
<div class="flex-1 min-w-0">
<h1 class="mt-2 text-2xl font-bold leading-7 text-gray-900 sm:text-3xl sm:truncate">Usuarios</h1>
</div>
<div class="mt-5 flex xl:mt-0 xl:ml-4">
<span class="hidden sm:block">
<a href="./admin-user-new.html">
<button type="button"
class="inline-flex items-center px-4 py-2 border border-gray-300 rounded-md shadow-sm text-sm font-medium text-white bg-sky-500 hover:bg-sky-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-offset-gray-50 focus:ring-purple-500">
<!-- Heroicon name: solid/pencil -->
<svg class="h-6 w-6" x-description="Heroicon name: outline/plus-sm" xmlns="http://www.w3.org/2000/svg"
fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6v6m0 0v6m0-6h6m-6 0H6">
</path>
</svg>
Nuevo
</button>
</a>
</span>
</div>
</div>
</header>
<main class="pt-8 pb-16">
<div class="max-w-4xl mx-auto sm:px-6 lg:px-8">
<!-- Stacked list -->
<ul id="users-list" role="list"
class="mt-5 border-t border-gray-200 divide-y divide-gray-200 sm:mt-0 sm:border-t-0">
<!-- Users from database... -->
</ul>
</div>
</main>
</div>
<!-- Footer -->
<footer id="footer" class="bg-amber-500">
</footer>
</body>
</html>