mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-17 10:43:04 +03:00
14 lines
419 B
Svelte
14 lines
419 B
Svelte
<script>
|
|
import Logo from './logo.svelte';
|
|
</script>
|
|
|
|
<div class="flex flex-col justify-center">
|
|
<div class="mx-auto rounded-2xl bg-muted p-3">
|
|
<Logo class="h-10 w-10" />
|
|
</div>
|
|
<p class="mt-5 font-playfair text-3xl font-bold sm:text-4xl">Browser unsupported</p>
|
|
<p class="mt-3 text-muted-foreground">
|
|
This browser doesn't support passkeys. Please use a browser that supports WebAuthn to sign in.
|
|
</p>
|
|
</div>
|