Add SealShare file sharing application with encryption, branding, auth, Docker, and Octane support

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
surtic86
2026-02-13 11:43:20 +01:00
co-authored by Claude Opus 4.6
parent 4790be8142
commit e37b322dde
120 changed files with 6346 additions and 1459 deletions
@@ -0,0 +1,40 @@
<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="o-user"
/>
<x-input
wire:model="email"
label="{{ __('Email address') }}"
type="email"
required
placeholder="admin@example.com"
icon="o-envelope"
/>
<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') }}" class="btn-primary w-full" spinner="createAdmin" />
</form>
</div>