Files
einundzwanzig-portal/resources/views/livewire/auth/ln-url-auth.blade.php
Benjamin Takats 645599b7c6 ln auth added
2022-12-12 19:17:09 +01:00

26 lines
767 B
PHP

<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>