diff --git a/client/src/components/Login.vue b/client/src/components/Login.vue index c935a7e..c1d7d42 100644 --- a/client/src/components/Login.vue +++ b/client/src/components/Login.vue @@ -65,7 +65,7 @@ onMounted(async () => { -
© 2023
+© 2023 Lucas Schumacher
diff --git a/client/src/components/Signup.vue b/client/src/components/Signup.vue index 96c6c24..a50fdd0 100644 --- a/client/src/components/Signup.vue +++ b/client/src/components/Signup.vue @@ -29,6 +29,7 @@ async function signup(ev) { let resp = await fetch(api_url, fetch_options) console.log(resp) if (resp.ok) { + err.value = '' let ans = await resp.json() console.log(ans) @@ -54,30 +55,29 @@ async function signup(ev) { -