From da0619b016ee11c34eaf0d12a0d5e7b690d7d996 Mon Sep 17 00:00:00 2001 From: Xeovalyte Date: Tue, 20 Sep 2022 17:33:15 +0200 Subject: [PATCH] added create account --- frontend/assets/css/tailwind.css | 10 +-- frontend/components/Login.vue | 94 +++++++++++++++++--- frontend/pages/settings/admin/ledenlijst.vue | 2 +- frontend/pages/settings/index.vue | 3 + frontend/plugins/firebase.js | 1 - 5 files changed, 93 insertions(+), 17 deletions(-) diff --git a/frontend/assets/css/tailwind.css b/frontend/assets/css/tailwind.css index 72bd553..713f20f 100644 --- a/frontend/assets/css/tailwind.css +++ b/frontend/assets/css/tailwind.css @@ -16,11 +16,7 @@ } .btn { - @apply bg-primary hover:bg-orange-700 text-gray-900 font-bold px-3 py-1 shadow rounded transition-all hover:cursor-pointer; - } - - .btn-disabled { - @apply bg-primary opacity-50 text-gray-900 font-bold px-3 py-1 shadow rounded transition-all hover:cursor-not-allowed; + @apply bg-primary hover:bg-orange-700 text-gray-900 font-bold px-3 py-1 shadow rounded transition-all hover:cursor-pointer disabled:opacity-50 disabled:hover:cursor-not-allowed; } .divider { @@ -34,4 +30,8 @@ .input { @apply bg-neutral-200 dark:bg-neutral-800 dark:text-gray-300 text-gray-900 shadow rounded border-none focus:ring-primary } + + .text-default { + @apply dark:text-gray-300 text-gray-900 + } } \ No newline at end of file diff --git a/frontend/components/Login.vue b/frontend/components/Login.vue index ae98977..28769d5 100644 --- a/frontend/components/Login.vue +++ b/frontend/components/Login.vue @@ -1,21 +1,39 @@ diff --git a/frontend/plugins/firebase.js b/frontend/plugins/firebase.js index 3aeb7e5..9e309a4 100644 --- a/frontend/plugins/firebase.js +++ b/frontend/plugins/firebase.js @@ -13,5 +13,4 @@ export default defineNuxtPlugin((nuxtApp) => { }; const app = initializeApp(firebaseConfig); - const auth = getAuth(app); }) \ No newline at end of file