coolify/resources/views/livewire/help.blade.php

12 lines
662 B
PHP
Raw Normal View History

2023-09-25 09:34:32 +02:00
<div class="flex flex-col w-11/12 max-w-5xl gap-2 modal-box">
2023-09-02 15:37:25 +02:00
<h3>How can we help?</h3>
2023-09-25 18:07:20 +02:00
<div>Your feedback helps us to improve Coolify. Thank you! 💜</div>
2023-09-02 15:37:25 +02:00
<form wire:submit.prevent="submit" class="flex flex-col gap-4 pt-4">
<x-forms.input id="subject" label="Subject" placeholder="Summary of your problem."></x-forms.input>
2023-09-25 09:34:32 +02:00
<x-forms.textarea rows="10" id="description" label="Description"
2023-09-02 15:37:25 +02:00
placeholder="Please provide as much information as possible."></x-forms.textarea>
2023-09-25 11:15:35 +02:00
<div></div>
2023-09-25 09:34:32 +02:00
<x-forms.button class="w-full mt-4" type="submit" onclick="help.close()">Send Email</x-forms.button>
2023-09-02 15:37:25 +02:00
</form>
</div>