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.1 KiB
PHP
41 lines
1.1 KiB
PHP
<div class="flex flex-col gap-6">
|
|
<x-auth-header :title="__('Setup SealShare')" :description="__('Create your admin account to get started')" />
|
|
|
|
<form wire:submit="createAdmin" class="flex flex-col gap-6">
|
|
<x-input
|
|
wire:model="name"
|
|
:label="__('Name')"
|
|
type="text"
|
|
required
|
|
autofocus
|
|
:placeholder="__('Admin name')"
|
|
icon="person"
|
|
/>
|
|
|
|
<x-input
|
|
wire:model="email"
|
|
:label="__('Email address')"
|
|
type="email"
|
|
required
|
|
placeholder="admin@example.com"
|
|
icon="mail"
|
|
/>
|
|
|
|
<x-password
|
|
wire:model="password"
|
|
:label="__('Password')"
|
|
required
|
|
:placeholder="__('Password')"
|
|
/>
|
|
|
|
<x-password
|
|
wire:model="password_confirmation"
|
|
:label="__('Confirm password')"
|
|
required
|
|
:placeholder="__('Confirm password')"
|
|
/>
|
|
|
|
<x-button type="submit" :label="__('Create Admin Account')" variant="filled" class="w-full" spinner="createAdmin" />
|
|
</form>
|
|
</div>
|