Files
pocket-id/frontend/src/lib/components/web-authn-unsupported.svelte
Elias Schneider eaff977b22 initial commit
2024-08-12 11:24:22 +02:00

14 lines
419 B
Svelte

<script>
import Logo from './logo.svelte';
</script>
<div class="flex flex-col justify-center">
<div class="bg-muted mx-auto rounded-2xl p-3">
<Logo class="h-10 w-10" />
</div>
<p class="font-playfair mt-5 text-3xl sm:text-4xl font-bold">Browser unsupported</p>
<p class="text-muted-foreground mt-3">
This browser doesn't support passkeys. Please use a browser that supports WebAuthn to sign in.
</p>
</div>