-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (92 loc) · 4.5 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html data-theme="light" 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">
<link rel="manifest" href="./manifest.json">
<!-- Notifications Notiflix -->
<link rel="stylesheet" href="./js/utils/notiflix-3.2.5.min.css" />
<script src="./js/utils/notiflix-3.2.5.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/daisyui@2.42.1/dist/full.css" rel="stylesheet" type="text/css" />
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2/dist/tailwind.min.css" rel="stylesheet" type="text/css" />
<script src="https://cdn.jsdelivr.net/npm/pouchdb@7.3.1/dist/pouchdb.min.js"></script>
<title>Tzoalli | Login</title>
</head>
<body>
<div class="hero min-h-screen" style="background-image: url(./images/london.jpg);">
<div class="hero-overlay bg-opacity-60"></div>
<svg style="position: fixed;right: 0; left: 0; bottom: 0;" viewBox="0 0 1440 320" fill="25AC5B"
xmlns="http://www.w3.org/2000/svg">
<path
d="M0 0L120 26.7C240 53 480 107 720 106.7C960 107 1200 53 1320 26.7L1440 0V320H1320C1200 320 960 320 720 320C480 320 240 320 120 320H0V0Z"
fill="#f0fcfb" />
</svg>
<div style="padding-top: 2%;"></div>
<div class="card sm:w-1/2 md:w-1/2 lg:w-1/3 rounded-2xl bg-secondary-content shadow-2xl px-5 py-7 m-10">
<div class=" flex justify-center py-3">
<img src="./images/Logo.png" width="40%" height="20%" />
</div>
<div class="flex flex-col items-center md:flex-row justify-around lg:flex-row justify-around">
<div class="mb-4">
<h3 class="font-semibold text-2xl text-gray-800 text-center">Iniciar Sesión</h3>
<p class="text-gray-500">Por favor, inicia sesión para continuar.</p>
</div>
</div>
<div class="flex flex-col items-center md:flex-row lg:flex-row ">
<div class="flex items-center flex-col mx-auto p-2">
<div class="w-full">
<label class="label">
<span class="label-text">Usuario:</span>
</label>
<input type="email" id="emailInput" placeholder="Usuario" name="username"
class="input input-bordered w-full">
<label class="label">
<span class="label-text">Contraseña:</span>
</label>
<input type="password" id="passwordInput" placeholder="* * * * * * * * *" name="password"
class="input input-bordered w-full" required>
<button id="btnLogin" class="btn gap-2 mt-5 border-none"
style="width: 100%;background-color: #25ac5b; color: white">
Acceder
</button>
</div>
<label for="my-modal" class="link link-hover link-primary modal-button py-5">Olvidé mi contraseña</label>
<input type="checkbox" id="my-modal" class="modal-toggle">
<div class="modal">
<div class="modal-box">
<div>
<h3 class="font-bold text-lg">
Recuperación de contraseña</h3>
<p class="py-4">Por favor, ingresa el email que se te otorgó, se te enviará un correo para reestrablecer
tus credenciales.</p>
<label class="label">
<span class="label-text">Mi correo es:</span>
</label>
<input id="username" type="username" name="username" placeholder="ejemplo_tzoalli@tzoalli.com"
class="input input-bordered w-full" required>
<div class="modal-action">
<div class="btn-group">
<label for="my-modal" class="btn bg-zinc-800" border-none>Cancelar</label>
<button type="submit" for="my-modal" class="btn gap-2 border-none"
style="background-color: #25ac5b; color: white">Recuperar mi cuenta
<span class="material-icons">
lock_reset
</span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="./js/app.js"></script>
<script src="./js/modules/LoginModule.js" type="module"></script>
</body>
</html>