Datensicherung, Footer, Update-Funktion, Docker-Setup

This commit is contained in:
2026-07-03 16:38:58 +02:00
parent aa0a810d63
commit 5af2b1e076
11 changed files with 199 additions and 28 deletions
+11 -2
View File
@@ -34,14 +34,23 @@
<div class="flex items-center justify-end mt-4">
@if (Route::has('password.request'))
<a class="underline text-sm text-gray-600 hover:text-gray-900 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500" href="{{ route('password.request') }}">
<a class="underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500" href="{{ route('password.request') }}">
{{ __('Forgot your password?') }}
</a>
@endif
<x-primary-button class="ms-3">
{{ __('Log in') }}
Anmelden
</x-primary-button>
</div>
@if (Route::has('register'))
<div class="mt-4 pt-4 border-t border-gray-200 dark:border-gray-600 text-center">
<a href="{{ route('register') }}"
class="inline-block w-full text-center px-4 py-2 text-sm font-medium rounded-md border border-gray-300 dark:border-gray-600 text-gray-700 dark:text-gray-300 hover:bg-gray-50 dark:hover:bg-gray-700 transition">
Neuen Benutzer registrieren
</a>
</div>
@endif
</form>
</x-guest-layout>