übergang auf pakete, integration von stripe und paypal, blog hinzugefügt.

This commit is contained in:
Codex Agent
2025-09-29 07:59:39 +02:00
parent 0a643c3e4d
commit e52a4005aa
83 changed files with 4284 additions and 629 deletions

View File

@@ -1,13 +1,58 @@
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Zahlung erfolgreich - Fotospiel</title>
</head>
<body class="container mx-auto px-4 py-8 text-center">
<h1>Zahlung erfolgreich!</h1>
<p>Vielen Dank für Ihren Kauf. Ihr Konto wurde aktualisiert.</p>
<a href="/admin" class="bg-green-600 text-white px-4 py-2 rounded">Zum Admin-Dashboard</a>
</body>
</html>
@extends('marketing.layout')
@section('title', __('marketing.success.title'))
@section('content')
<div class="min-h-screen flex items-center justify-center bg-gray-50 py-12 px-4 sm:px-6 lg:px-8">
@auth
@if(auth()->user()->email_verified_at)
<script>
window.location.href = '/admin';
</script>
<div class="text-center">
<div class="spinner-border animate-spin inline-block w-8 h-8 border border-2 border-blue-600 border-t-transparent rounded-full" role="status">
<span class="sr-only">Loading...</span>
</div>
<p class="mt-2 text-gray-600">{{ __('marketing.success.redirecting') }}</p>
</div>
@else
<div class="max-w-md w-full bg-white rounded-lg shadow-md p-8">
<div class="text-center">
<h2 class="text-2xl font-bold text-gray-900 mb-4">
{{ __('marketing.success.verify_email') }}
</h2>
<p class="text-gray-600 mb-6">
{{ __('marketing.success.check_email') }}
</p>
<form method="POST" action="{{ route('verification.send') }}">
@csrf
<button type="submit" class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-2 rounded-md font-medium transition duration-300">
{{ __('auth.resend_verification') }}
</button>
</form>
<p class="mt-4 text-sm text-gray-600">
{{ __('auth.have_account') }} <a href="{{ route('login') }}" class="text-blue-600 hover:text-blue-500">{{ __('auth.login') }}</a>
</p>
</div>
</div>
@endif
@else
<div class="max-w-md w-full bg-white rounded-lg shadow-md p-8">
<div class="text-center">
<h2 class="text-2xl font-bold text-gray-900 mb-4">
{{ __('marketing.success.complete_purchase') }}
</h2>
<p class="text-gray-600 mb-6">
{{ __('marketing.success.login_to_continue') }}
</p>
<a href="{{ route('login') }}" class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-2 rounded-md font-medium transition duration-300 block mb-2">
{{ __('auth.login') }}
</a>
<p class="text-sm text-gray-600">
{{ __('auth.no_account') }} <a href="{{ route('register') }}" class="text-blue-600 hover:text-blue-500">{{ __('auth.register') }}</a>
</p>
</div>
</div>
@endauth
</div>
@endsection