Konsolidierter, bereinigter Stand der Wissensbasis (docs/). Frischer Wurzel-Commit, um urheberrechtlich problematische Volltexte aus der Historie zu entfernen (die bisherige Historie bestand aus einem einzigen Initial-Commit). Enthaltene Änderungen (vgl. docs/_Steuerung/CHANGELOG.md, 2026-05-29): - Copyright-Hygiene: 25 Volltext-/Übersetzungsdateien (Sharp 14 Kap., Wala 11 Kap.) entfernt; je Quelle _Fundstellen-Index.md als Provenienzbeleg; Quellnachweise + Steuerungsdateien angepasst. - Konsistenz-Korrekturen: Reichweite 000-013 (Scorecard-Regeln), Rule-ID MW-WK-DIFF-101, Quellnachweis-Dateiverweis, Dok.000 v2.0.2. - Dateinamen-Normalisierung: Startdatei ohne Leerzeichen. Originale (Wala/Sharp E-Books) privat außerhalb des Repos archiviert. Co-authored-by: Cursor <cursoragent@cursor.com>
36 lines
1.3 KiB
PHP
36 lines
1.3 KiB
PHP
<x-layouts::auth :title="__('Confirm password')">
|
|
<div class="flex flex-col gap-6">
|
|
<x-auth-header
|
|
:title="__('Confirm password')"
|
|
:description="__('This is a secure area of the application. Please confirm your password before continuing.')"
|
|
/>
|
|
|
|
<x-auth-session-status class="text-center" :status="session('status')" />
|
|
|
|
<x-passkey-verify
|
|
options-route="passkey.confirm-options"
|
|
submit-route="passkey.confirm"
|
|
:label="__('Confirm with passkey')"
|
|
:loading-label="__('Confirming...')"
|
|
:separator="__('Or confirm with password')"
|
|
/>
|
|
|
|
<form method="POST" action="{{ route('password.confirm.store') }}" class="flex flex-col gap-6">
|
|
@csrf
|
|
|
|
<flux:input
|
|
name="password"
|
|
:label="__('Password')"
|
|
type="password"
|
|
required
|
|
autocomplete="current-password"
|
|
:placeholder="__('Password')"
|
|
viewable
|
|
/>
|
|
|
|
<flux:button variant="primary" type="submit" class="w-full" data-test="confirm-password-button">
|
|
{{ __('Confirm') }}
|
|
</flux:button>
|
|
</form>
|
|
</div>
|
|
</x-layouts::auth>
|