Added feedbacks.index in root->index. Added Feedbacks page to app. Added a send feedback button on contacts->index

This commit is contained in:
Anders
2020-06-29 14:08:26 +02:00
parent 6441a8838a
commit b32a782b17
3 changed files with 27 additions and 2 deletions
@@ -0,0 +1,19 @@
@extends("app.layout.base")
@section("title")
Feedback - Ris/Ros
@endsection
@section("content")
<main class="h-100 text-center">
<form action="" method="post" required>
<span>Ris el. Ros?</span>
<select name="choose_suggestion" class="mb-2">
<option>Ros</option>
<option>Ris</option>
</select>
<textarea name="feedback_message" placeholder="Skriv Ris/Ros besked her" required></textarea>
<button class="btn btn-sde-blue mt-2" onclick="window.location = '';">Send Ris/Ros</button>
</form>
</main>
@endsection