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>
29 lines
1.2 KiB
PHP
29 lines
1.2 KiB
PHP
<x-layouts::auth :title="__('Email verification')">
|
|
<div class="mt-4 flex flex-col gap-6">
|
|
<flux:text class="text-center">
|
|
{{ __('Please verify your email address by clicking on the link we just emailed to you.') }}
|
|
</flux:text>
|
|
|
|
@if (session('status') == 'verification-link-sent')
|
|
<flux:text class="text-center font-medium !dark:text-green-400 !text-green-600">
|
|
{{ __('A new verification link has been sent to the email address you provided during registration.') }}
|
|
</flux:text>
|
|
@endif
|
|
|
|
<div class="flex flex-col items-center justify-between space-y-3">
|
|
<form method="POST" action="{{ route('verification.send') }}">
|
|
@csrf
|
|
<flux:button type="submit" variant="primary" class="w-full">
|
|
{{ __('Resend verification email') }}
|
|
</flux:button>
|
|
</form>
|
|
|
|
<form method="POST" action="{{ route('logout') }}">
|
|
@csrf
|
|
<flux:button variant="ghost" type="submit" class="text-sm cursor-pointer" data-test="logout-button">
|
|
{{ __('Log out') }}
|
|
</flux:button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</x-layouts::auth>
|