-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup_admin.html
More file actions
62 lines (52 loc) · 2.96 KB
/
setup_admin.html
File metadata and controls
62 lines (52 loc) · 2.96 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Crear Admin | Express Faena</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
</head>
<body class="bg-gray-900 font-sans flex items-center justify-center min-h-screen">
<main class="bg-gray-800 p-8 rounded-2xl shadow-lg w-full max-w-sm">
<div class="text-center mb-6">
<h1 class="text-3xl font-black text-white">🛠️</h1>
<h2 class="text-2xl font-bold text-white mt-2">Crear Dueño / Admin</h2>
<p class="text-gray-400">Crea tu cuenta para acceder al sistema.</p>
</div>
<form id="signup-form">
<div class="space-y-4">
<div>
<label for="email" class="block text-sm font-medium text-gray-300">Correo Electrónico</label>
<div class="relative">
<span class="absolute inset-y-0 left-0 flex items-center pl-3">
<i class="fas fa-envelope text-gray-400"></i>
</span>
<input type="email" id="email" name="email" required
class="mt-1 block w-full bg-gray-700 border border-gray-600 rounded-md shadow-sm py-2 px-3 pl-10 text-white focus:outline-none focus:ring-yellow-500 focus:border-yellow-500">
</div>
</div>
<div>
<label for="password" class="block text-sm font-medium text-gray-300">Contraseña</label>
<div class="relative">
<span class="absolute inset-y-0 left-0 flex items-center pl-3">
<i class="fas fa-lock text-gray-400"></i>
</span>
<input type="password" id="password" name="password" required minlength="6"
class="mt-1 block w-full bg-gray-700 border border-gray-600 rounded-md shadow-sm py-2 px-3 pl-10 text-white focus:outline-none focus:ring-yellow-500 focus:border-yellow-500"
placeholder="Mínimo 6 caracteres">
</div>
</div>
</div>
<div class="mt-6">
<button type="submit" id="signup-button"
class="w-full flex justify-center py-2 px-4 border border-transparent rounded-md shadow-sm text-sm font-bold text-black bg-green-500 hover:bg-green-600 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-green-500 focus:ring-offset-gray-800 transition-colors">
Crear Usuario
</button>
</div>
</form>
<div id="message" class="mt-4 text-center text-sm font-semibold"></div>
</main>
<script type="module" src="setup_admin.js"></script>
</body>
</html>