PDF-Generator für Eventschluss; CSRF-Protection

This commit is contained in:
2026-04-06 15:03:15 +02:00
parent 9cac0294cd
commit b48c689d31
11 changed files with 654 additions and 5 deletions

View File

@@ -21,6 +21,22 @@
@endsection
@section('content')
<h1>{{ __('app.preapplication.edit.download.title') }}</h1>
<p>{{ __('app.preapplication.edit.download.description') }}</p>
<div class="eingabemaske">
<form action="{{ route('generatePDF') }}" method="GET">
<label for="event_id">{{ __('app.preapplication.region') }}:</label>
<select id="event_id" name="event_id">
@foreach(ChaosEvents::all() as $event)
<option value="{{ $event->id }}">{{ $event->name }}</option>
@endforeach
</select>
<br /><br />
<button type="submit">{{ __('app.preapplication.edit.download.button') }}</button>
</form>
</div>
<br /><br />
<h1>{{ __("app.preapplication.edit.title") }}</h1>
<p>{{ __("app.preapplication.edit.description") }}</p>