Profil-Feinschliff: Pflicht-Badges, Fokus-Fix, Submit-Modal auf Switches
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
parent
afcca34f91
commit
b7145512a7
3 changed files with 29 additions and 21 deletions
|
|
@ -81,20 +81,24 @@
|
|||
</div>
|
||||
@endif
|
||||
|
||||
{{-- Bestätigungen --}}
|
||||
<div class="space-y-2">
|
||||
<label class="flex items-start gap-2 text-[12.5px] text-[color:var(--color-ink-2)]">
|
||||
<input type="checkbox" x-model="agb" class="mt-0.5" />
|
||||
<span>{{ __('Der Inhalt entspricht den AGB und gesetzlichen Vorgaben.') }}</span>
|
||||
</label>
|
||||
<label class="flex items-start gap-2 text-[12.5px] text-[color:var(--color-ink-2)]">
|
||||
<input type="checkbox" x-model="images" class="mt-0.5" />
|
||||
<span>{{ __('Alle Bildrechte sind geklärt.') }}</span>
|
||||
</label>
|
||||
<label class="flex items-start gap-2 text-[12.5px] text-[color:var(--color-ink-2)]">
|
||||
<input type="checkbox" x-model="contact" class="mt-0.5" />
|
||||
<span>{{ __('Die Angaben zum Pressekontakt sind korrekt.') }}</span>
|
||||
</label>
|
||||
{{-- Bestätigungen — Flux-Switches (Einheitlichkeit, 12.06.2026);
|
||||
der Alpine-State steuert weiterhin den Bestätigen-Button. --}}
|
||||
<div class="space-y-3">
|
||||
<flux:switch
|
||||
align="left"
|
||||
x-on:change="agb = $event.target.checked"
|
||||
:label="__('Der Inhalt entspricht den AGB und gesetzlichen Vorgaben.')"
|
||||
/>
|
||||
<flux:switch
|
||||
align="left"
|
||||
x-on:change="images = $event.target.checked"
|
||||
:label="__('Alle Bildrechte sind geklärt.')"
|
||||
/>
|
||||
<flux:switch
|
||||
align="left"
|
||||
x-on:change="contact = $event.target.checked"
|
||||
:label="__('Die Angaben zum Pressekontakt sind korrekt.')"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div class="flex justify-end gap-2">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue