44 lines
1.4 KiB
PHP
44 lines
1.4 KiB
PHP
@extends("admin.layout.base")
|
|
@extends("admin.layout.header")
|
|
|
|
@section("title")
|
|
Aktivitet - Vis
|
|
@endsection
|
|
|
|
@section("path")
|
|
<a href="{{ route('events.create') }}" class="text-white">Opret Aktivitet</a> /
|
|
@endsection
|
|
|
|
@section("content")
|
|
<style>
|
|
.ck-editor__main {
|
|
margin-bottom: 1rem;
|
|
}
|
|
</style>
|
|
<script src="https://cdn.ckeditor.com/ckeditor5/21.0.0/classic/ckeditor.js"></script>
|
|
<h1>Opret Aktivitet:</h1>
|
|
<form method="post" action="{{ route("events.store") }}">
|
|
@csrf
|
|
<label for="name">Event Navn:</label>
|
|
<input type="text" name="name" id="name" max="60" required>
|
|
<label for="accountable">Event Ansvarlig:</label>
|
|
<input type="text" name="accountable" id="accountable" required>
|
|
<label for="description">Event Beskrivelse:</label>
|
|
<textarea name="description" id="editor"></textarea>
|
|
<label for="date">Event dato:</label>
|
|
<input type="datetime-local" name="date" id="date" required>
|
|
<input type="submit" class="btn btn-dark text-white" value="Opret">
|
|
</form>
|
|
|
|
<script>
|
|
ClassicEditor
|
|
.create( document.querySelector( '#editor' ))
|
|
.then( editor => {
|
|
console.log( editor );
|
|
} )
|
|
.catch( error => {
|
|
console.error( error );
|
|
} );
|
|
</script>
|
|
@endsection
|