authentikate/resources/views/livewire/consent-screen.blade.php
Javier Feliz 098927e770
All checks were successful
linter / quality (push) Successful in 59s
tests / ci (push) Successful in 1m14s
Build & Push Docker Image to Registry / build (release) Successful in 2m36s
Update to handle basic auth for gittea compatibility
2025-08-05 00:36:01 -04:00

13 lines
627 B
PHP

<div class="flex max-w-xl mx-auto min-h-svh flex-col items-center justify-center gap-6 p-6 md:p-10">
<x-card class="p-10">
<flux:heading>You're about to log into</flux:heading>
<flux:heading size="xl">{{ $client->name }}</flux:heading>
<flux:separator />
<flux:text size="xl">Logging in as: {{ auth()->user()->name }}</flux:text>
<flux:separator />
<div class="flex gap-4">
<flux:button wire:click="approve" variant="primary">Confirm</flux:button>
<flux:button wire:click="deny" variant="ghost">Cancel</flux:button>
</div>
</x-card>
</div>