Refresh list status over Reverb with polling fallback, clarify queued vs processing, streamline upload empty states, and seed an admin login.
28 lines
981 B
PHP
28 lines
981 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
@include('partials.head')
|
|
<style>[x-cloak]{display:none!important}</style>
|
|
</head>
|
|
<body class="min-h-screen bg-white text-zinc-800 antialiased dark:bg-zinc-900 dark:text-zinc-100">
|
|
<div class="relative flex min-h-svh flex-col items-center justify-center gap-6 p-6 md:p-10">
|
|
<div class="absolute end-4 top-4">
|
|
<x-appearance-toggle />
|
|
</div>
|
|
<div class="flex w-full max-w-sm flex-col gap-6">
|
|
<flux:brand
|
|
class="justify-center"
|
|
name="{{ config('app.name', 'AndyTranscribe') }}"
|
|
href="{{ url('/') }}"
|
|
wire:navigate
|
|
/>
|
|
<div class="flex flex-col gap-6">
|
|
{{ $slot }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
@fluxScripts
|
|
</body>
|
|
</html>
|