move auth pages into auth dir

This commit is contained in:
Huskydog9988
2025-03-22 15:54:43 -04:00
parent 6918e78cf9
commit 6ed7e76b17
7 changed files with 10 additions and 7 deletions

View File

@ -43,5 +43,5 @@ user.value = null;
// Redirect to signin page after signout
await $dropFetch("/signout");
router.push("/signin");
router.push("/auth/signin");
</script>

View File

@ -248,7 +248,7 @@ function register_wrapper() {
loading.value = true;
register()
.then(() => {
router.push("/signin");
router.push("/auth/signin");
})
.catch((response) => {
const message = response.statusMessage || "An unknown error occurred";