mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-21 09:15:55 +03:00
fix: alternative login method link on mobile
This commit is contained in:
@@ -58,7 +58,7 @@
|
|||||||
: `/login/alternative?redirect=${encodeURIComponent(
|
: `/login/alternative?redirect=${encodeURIComponent(
|
||||||
page.url.pathname + page.url.search
|
page.url.pathname + page.url.search
|
||||||
)}`}
|
)}`}
|
||||||
class="text-muted-foreground mt-5 text-xs"
|
class="text-muted-foreground mt-7 flex justify-center text-xs"
|
||||||
>
|
>
|
||||||
Don't have access to your passkey?
|
Don't have access to your passkey?
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
import CheckmarkAnimated from '$lib/icons/checkmark-animated.svelte';
|
import CheckmarkAnimated from '$lib/icons/checkmark-animated.svelte';
|
||||||
import ConnectArrow from '$lib/icons/connect-arrow.svelte';
|
import ConnectArrow from '$lib/icons/connect-arrow.svelte';
|
||||||
import CrossAnimated from '$lib/icons/cross-animated.svelte';
|
import CrossAnimated from '$lib/icons/cross-animated.svelte';
|
||||||
import type { OidcClient } from '$lib/types/oidc.type';
|
import type { OidcClientMetaData } from '$lib/types/oidc.type';
|
||||||
|
|
||||||
const {
|
const {
|
||||||
success,
|
success,
|
||||||
@@ -12,7 +12,7 @@
|
|||||||
}: {
|
}: {
|
||||||
success: boolean;
|
success: boolean;
|
||||||
error: boolean;
|
error: boolean;
|
||||||
client: OidcClient;
|
client: OidcClientMetaData;
|
||||||
} = $props();
|
} = $props();
|
||||||
|
|
||||||
let animationDone = $state(false);
|
let animationDone = $state(false);
|
||||||
|
|||||||
Reference in New Issue
Block a user