From b14319a776c75cf9da9da293d431d579c84ae45b Mon Sep 17 00:00:00 2001 From: Neuery17Alt Date: Thu, 14 Mar 2024 10:45:42 +0100 Subject: [PATCH 1/5] feat(wip): working on login --- frontend/app.vue | 7 ++- frontend/components/login/LoginCard.vue | 28 ++++++++++++ frontend/components/login/LoginInput.vue | 18 ++++++++ frontend/components/util/Logo.vue | 58 ++++++++++++++++++++++++ frontend/pages/login.vue | 12 +++++ 5 files changed, 121 insertions(+), 2 deletions(-) create mode 100644 frontend/components/login/LoginCard.vue create mode 100644 frontend/components/login/LoginInput.vue create mode 100644 frontend/components/util/Logo.vue create mode 100644 frontend/pages/login.vue diff --git a/frontend/app.vue b/frontend/app.vue index a495b75..e20d5e9 100644 --- a/frontend/app.vue +++ b/frontend/app.vue @@ -1,5 +1,8 @@ + \ No newline at end of file diff --git a/frontend/components/login/LoginCard.vue b/frontend/components/login/LoginCard.vue new file mode 100644 index 0000000..c9e97fc --- /dev/null +++ b/frontend/components/login/LoginCard.vue @@ -0,0 +1,28 @@ + + + + + \ No newline at end of file diff --git a/frontend/components/login/LoginInput.vue b/frontend/components/login/LoginInput.vue new file mode 100644 index 0000000..f075f41 --- /dev/null +++ b/frontend/components/login/LoginInput.vue @@ -0,0 +1,18 @@ + + + + + \ No newline at end of file diff --git a/frontend/components/util/Logo.vue b/frontend/components/util/Logo.vue new file mode 100644 index 0000000..b2e817e --- /dev/null +++ b/frontend/components/util/Logo.vue @@ -0,0 +1,58 @@ + + + + + \ No newline at end of file diff --git a/frontend/pages/login.vue b/frontend/pages/login.vue new file mode 100644 index 0000000..0efa2fd --- /dev/null +++ b/frontend/pages/login.vue @@ -0,0 +1,12 @@ + + + + + \ No newline at end of file From fb0cdb63364956c90cd690913d621059bdc9bb62 Mon Sep 17 00:00:00 2001 From: Neuery17Alt Date: Thu, 14 Mar 2024 11:34:14 +0100 Subject: [PATCH 2/5] feat(wip): working in progress --- frontend/app.config.ts | 2 +- frontend/components/login/LoginCard.vue | 23 ++++++++++++----------- frontend/components/login/LoginInput.vue | 6 +++--- frontend/nuxt.config.ts | 5 +++-- 4 files changed, 19 insertions(+), 17 deletions(-) diff --git a/frontend/app.config.ts b/frontend/app.config.ts index 9fa0e26..c3a98a6 100644 --- a/frontend/app.config.ts +++ b/frontend/app.config.ts @@ -4,7 +4,7 @@ export default defineAppConfig({ gray: 'neutral', container: { constrained: '', - padding: 'p-2', + padding: '', base: '', }, button: { diff --git a/frontend/components/login/LoginCard.vue b/frontend/components/login/LoginCard.vue index c9e97fc..1c9a2e1 100644 --- a/frontend/components/login/LoginCard.vue +++ b/frontend/components/login/LoginCard.vue @@ -2,20 +2,21 @@