PDF-Generator für Eventschluss; CSRF-Protection
This commit is contained in:
@@ -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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user