GF-12-breadcrumbs #11

Manually merged
liviu merged 8 commits from GF-12-breadcrumbs into production 2026-01-12 14:31:25 +01:00
6 changed files with 4 additions and 4 deletions
Showing only changes of commit 1a8f38d73f - Show all commits

View file

@ -43,7 +43,7 @@ const doLogin = async () => {
<Button type="submit">Login</Button>
<FieldDescription class="text-center">
Don't have an account?
<NuxtLink to="/member/auth/create-account">
<NuxtLink to="/auth/create-account">
<Button variant="link">Create account</Button>
</NuxtLink>
</FieldDescription>

View file

@ -63,7 +63,7 @@ const createAccount = async () => {
<Button type="submit">Create Account</Button>
<FieldDescription class="text-center">
Already have an account?
<NuxtLink to="/member/auth/login">
<NuxtLink to="/auth/login">
<Button variant="link">Log in</Button>
</NuxtLink>
</FieldDescription>

View file

@ -29,11 +29,11 @@ const userInititials = computed(() => {
});
const handleLogout = () => {
navigateTo("/member/auth/logout");
navigateTo("/auth/logout");
};
const handleLogin = () => {
navigateTo("/member/auth/login");
navigateTo("/auth/login");
};
</script>