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!

@@ -48,10 +48,10 @@
- Crear cuentaCrear cuenta
- - + + - + \ 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 @@ + + + + \ 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")], +};