From 410d0fc5876692ed9b9a434e6c900e887b42e16f Mon Sep 17 00:00:00 2001 From: Branden J Brown Date: Fri, 2 Feb 2024 08:28:36 -0600 Subject: [PATCH] add register and login to frontend --- site/components.d.ts | 1 + site/src/App.vue | 34 ++++++++++- site/src/components/TheLanding.vue | 97 ++++++++++++------------------ site/src/components/TheLogin.vue | 71 ++++++++++++++++++++++ 4 files changed, 144 insertions(+), 59 deletions(-) create mode 100644 site/src/components/TheLogin.vue diff --git a/site/components.d.ts b/site/components.d.ts index 6eda1f4..2b227d1 100644 --- a/site/components.d.ts +++ b/site/components.d.ts @@ -13,5 +13,6 @@ declare module 'vue' { PlayerHP: typeof import('./src/components/PlayerHP.vue')['default'] PlayerItems: typeof import('./src/components/PlayerItems.vue')['default'] TheLanding: typeof import('./src/components/TheLanding.vue')['default'] + TheLogin: typeof import('./src/components/TheLogin.vue')['default'] } } diff --git a/site/src/App.vue b/site/src/App.vue index 6424e01..fefd170 100644 --- a/site/src/App.vue +++ b/site/src/App.vue @@ -7,7 +7,15 @@ - + + + + + + + Play + + @@ -20,7 +28,7 @@ diff --git a/site/src/components/TheLanding.vue b/site/src/components/TheLanding.vue index fde08dc..9d0c90c 100644 --- a/site/src/components/TheLanding.vue +++ b/site/src/components/TheLanding.vue @@ -1,59 +1,42 @@ - - diff --git a/site/src/components/TheLogin.vue b/site/src/components/TheLogin.vue new file mode 100644 index 0000000..d7ccca4 --- /dev/null +++ b/site/src/components/TheLogin.vue @@ -0,0 +1,71 @@ + + +