ln auth added

This commit is contained in:
Benjamin Takats
2022-12-01 19:44:29 +01:00
parent 9aae2f1a3f
commit 645599b7c6
27 changed files with 882 additions and 6 deletions

View File

@@ -0,0 +1,25 @@
<x-jet-authentication-card>
<x-slot name="logo">
<x-jet-authentication-card-logo/>
</x-slot>
<div wire:ignore>
<div>
<div class="flex justify-center" wire:key="qrcode">
{!! $this->qrCode !!}
</div>
<div class="my-2 flex justify-center font-mono break-all">
<span wire:key="lnurl">lightning:{{ $this->lnurl }}</span>
</div>
</div>
<div class="flex items-center justify-end mt-4">
<x-jet-button class="ml-4" wire:click="switchToEmail">
{{ __('Switch to E-Mail login') }}
</x-jet-button>
</div>
</div>
<div wire:poll="checkAuth" wire:key="checkAuth"></div>
</x-jet-authentication-card>