Replaces maryUI and daisyUI with nonameweb/livewire-material: the Vibrant indigo scheme, a system/light/dark theme under sealshare-theme, one top app bar with the account menu, the upload drop zone and link-ready moments, M3 fields, dialogs instead of wire:confirm, snackbars instead of flashed messages, a sortable admin table, and the starter-kit cleanup. Docker builds assets after Composer; CI drops the Flux step. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01V9NnLxnPp8vaaurb3Z1MFy
41 lines
1.3 KiB
PHP
41 lines
1.3 KiB
PHP
<x-layouts::auth :title="__('Log in')">
|
|
<x-auth-header :title="__('Log in to your account')" :description="__('Enter your email and password below to log in')" />
|
|
|
|
<x-auth-session-status :status="session('status')" />
|
|
|
|
<form method="POST" action="{{ route('login.store') }}" class="flex flex-col gap-5">
|
|
@csrf
|
|
|
|
<x-input
|
|
name="email"
|
|
:label="__('Email address')"
|
|
:value="old('email')"
|
|
type="email"
|
|
required
|
|
autofocus
|
|
autocomplete="email"
|
|
placeholder="email@example.com"
|
|
icon="mail"
|
|
/>
|
|
|
|
<div class="grid gap-1">
|
|
<x-password
|
|
name="password"
|
|
:label="__('Password')"
|
|
required
|
|
autocomplete="current-password"
|
|
/>
|
|
|
|
@if (Route::has('password.request'))
|
|
<a class="link w-fit justify-self-end type-label-lg" href="{{ route('password.request') }}" wire:navigate>
|
|
{{ __('Forgot your password?') }}
|
|
</a>
|
|
@endif
|
|
</div>
|
|
|
|
<x-checkbox name="remember" :label="__('Remember me')" :checked="(bool) old('remember')" />
|
|
|
|
<x-button type="submit" :label="__('Log in')" variant="filled" class="w-full" data-test="login-button" />
|
|
</form>
|
|
</x-layouts::auth>
|