2020-06-29 08:31:24 +00:00
|
|
|
@extends("admin.layout.base")
|
|
|
|
@extends("admin.layout.header")
|
|
|
|
|
|
|
|
@section("title")
|
|
|
|
Kontakter - Opret
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section("path")
|
2020-06-30 09:38:28 +00:00
|
|
|
<a href="{{ route('contacts.create') }}" class="text-white">Opret Kontakt</a> /
|
2020-06-29 08:31:24 +00:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section("content")
|
2020-08-05 07:23:57 +00:00
|
|
|
<style>
|
|
|
|
.ck-editor__main {
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<script src="https://cdn.ckeditor.com/ckeditor5/21.0.0/classic/ckeditor.js"></script>
|
|
|
|
|
2020-06-29 08:31:24 +00:00
|
|
|
<h1>Opret Kontakt:</h1>
|
2020-08-11 08:39:22 +00:00
|
|
|
<form name="contact" method="post" action="{{ route("contacts.store") }}">
|
2020-06-29 08:31:24 +00:00
|
|
|
@csrf
|
2020-07-27 11:34:45 +00:00
|
|
|
<label for="contactname">Kontakt Navn:</label>
|
|
|
|
<input type="text" name="contactname" id="contactname" placeholder="Navn" required>
|
|
|
|
<label for="title">Titel:</label>
|
|
|
|
<input type="text" name="title" id="title" placeholder="Titel" required>
|
2020-06-29 08:31:24 +00:00
|
|
|
<label for="email">Email:</label>
|
|
|
|
<input type="email" name="email" id="email" placeholder="x@y.z" required>
|
|
|
|
<label for="tel">Telefon nr:</label>
|
2020-08-05 11:29:45 +00:00
|
|
|
<input type="tel" name="phone" id="tel" placeholder="12345678" pattern="[0-9]{2}[0-9]{2}[0-9]{2}[0-9]{2}">
|
2020-08-05 07:43:53 +00:00
|
|
|
<label for="teltimes">Telefon tider: (Forblives blank, hvis der ikke er nogen bestemte tider) - Brug Shift+Enter for at teksten vises lige neden under hinanden på hjemmesiden</label>
|
2020-08-05 07:23:57 +00:00
|
|
|
<textarea name="phonetimes" id="editor"></textarea>
|
2020-06-29 08:31:24 +00:00
|
|
|
<input type="submit" class="btn btn-dark text-white" value="Opret">
|
|
|
|
</form>
|
2020-08-05 07:23:57 +00:00
|
|
|
|
|
|
|
<script>
|
|
|
|
ClassicEditor
|
|
|
|
.create( document.querySelector( '#editor' ), {
|
2020-08-05 07:43:53 +00:00
|
|
|
toolbar: [ 'heading', '|', 'bold', 'italic', 'link' ],
|
2020-08-05 07:23:57 +00:00
|
|
|
heading: {
|
|
|
|
options: [
|
|
|
|
{ model: 'paragraph', title: 'Paragraph', class: 'ck-heading_paragraph' },
|
|
|
|
{ model: 'heading1', view: 'h3', title: 'Heading 1', class: 'sde-blue' },
|
|
|
|
{ model: 'heading2', view: 'h4', title: 'Heading 2', class: 'sde-blue' }
|
|
|
|
]
|
|
|
|
}
|
|
|
|
} )
|
|
|
|
.catch( error => {
|
|
|
|
console.log( error );
|
|
|
|
} );
|
|
|
|
|
|
|
|
</script>
|
2020-06-29 08:31:24 +00:00
|
|
|
@endsection
|
2020-08-11 08:39:22 +00:00
|
|
|
@section("scripts")
|
|
|
|
<script>
|
|
|
|
$(function() {
|
2020-08-11 08:54:01 +00:00
|
|
|
$('form').areYouSure(
|
2020-08-11 08:39:22 +00:00
|
|
|
{
|
|
|
|
message: 'It looks like you have been editing something. '
|
|
|
|
+ 'If you leave before saving, your changes will be lost.'
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
@endsection
|