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
@@ -11,41 +11,36 @@
<input type="hidden" name="token" value="{{ request()->route('token') }}">
<!-- Email Address -->
<flux:input
<x-input
name="email"
value="{{ request('email') }}"
:label="__('Email')"
label="{{ __('Email') }}"
type="email"
required
autocomplete="email"
icon="o-envelope"
/>
<!-- Password -->
<flux:input
<x-password
name="password"
:label="__('Password')"
type="password"
label="{{ __('Password') }}"
required
autocomplete="new-password"
:placeholder="__('Password')"
viewable
placeholder="{{ __('Password') }}"
/>
<!-- Confirm Password -->
<flux:input
<x-password
name="password_confirmation"
:label="__('Confirm password')"
type="password"
label="{{ __('Confirm password') }}"
required
autocomplete="new-password"
:placeholder="__('Confirm password')"
viewable
placeholder="{{ __('Confirm password') }}"
/>
<div class="flex items-center justify-end">
<flux:button type="submit" variant="primary" class="w-full" data-test="reset-password-button">
{{ __('Reset password') }}
</flux:button>
<x-button type="submit" label="{{ __('Reset password') }}" class="btn-primary w-full" data-test="reset-password-button" />
</div>
</form>
</div>