diff --git a/src/router/index.js b/src/router/index.js
index e5a3095..b1b798a 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -10,7 +10,11 @@ const router = createRouter({
name: 'Login',
component: () => import('../views/LoginView.vue')
},
-
+ {
+ path: '/registro',
+ name: 'Registro',
+ component: () => import('../views/RegistroView.vue')
+ },
{
path: '/listas',
name: 'listas',
diff --git a/src/views/LoginView.vue b/src/views/LoginView.vue
index e86a49e..aaa8b1b 100644
--- a/src/views/LoginView.vue
+++ b/src/views/LoginView.vue
@@ -4,10 +4,10 @@
class="min-h-screen flex items-center justify-center w-full dark:bg-gray-950"
>
- Bienvenido!
+ Logueate!
-
-
+
+
-
- Recuperar contraseña
-
+ Recuperar contraseña
+ type="email"
+ id="email"
+ v-model="email"
+ class="shadow-sm rounded-md w-full px-3 py-2 border border-gray-300 focus:outline-none focus:ring-indigo-500 focus:border-indigo-500"
+ placeholder="your@email.com"
+ required
+ />
- Si el email existe en nuestra base de datos se le mandará un correo con un enlace donde podrá cambiar la contraseña.
+ Si el email existe en nuestra base de datos se le mandará un correo con
+ un enlace donde podrá cambiar la contraseña.
@@ -95,7 +94,6 @@
-
+
\ No newline at end of file
diff --git a/src/views/RegistroView.vue b/src/views/RegistroView.vue
new file mode 100644
index 0000000..b9ff9f2
--- /dev/null
+++ b/src/views/RegistroView.vue
@@ -0,0 +1,101 @@
+
+
+
+
+
+ Crea una cuenta!
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/tailwind.config.js b/tailwind.config.js
index d8ca0b3..57fb9a1 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -3,12 +3,10 @@ module.exports = {
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
"./node_modules/flowbite/**/*.js",
- 'node_modules/flowbite-vue/**/*.{js,jsx,ts,tsx,vue}',
+ "node_modules/flowbite-vue/**/*.{js,jsx,ts,tsx,vue}",
],
theme: {
extend: {},
},
- plugins: [
- require('flowbite/plugin')
-]
-}
+ plugins: [require("flowbite/plugin")],
+};